Skip to content

Commit

Permalink
Version 0.2.14
Browse files Browse the repository at this point in the history
Remove print
  • Loading branch information
mihudec committed Sep 8, 2020
1 parent ebe3046 commit 3fbfb4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ccutils/ccparser/CiscoIosParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ def vrfs(self):
print(line)
entry = line.re_search(regex=self._address_family_regex, group="ALL")
rt_candidates = line.re_search_children(regex=self._vrf_afi_rt_regex, group="ALL")
print(rt_candidates)
# print(rt_candidates)
if len(rt_candidates):
entry["import"] = [x["rt"] for x in rt_candidates if x["action"] == "import"]
entry["export"] = [x["rt"] for x in rt_candidates if x["action"] == "export"]
Expand Down

0 comments on commit 3fbfb4d

Please sign in to comment.