Skip to content

Commit

Permalink
Update show_ospf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacharyPuls authored Sep 16, 2024
1 parent e56c85d commit 81745df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/genie/libs/parser/iosxe/show_ospf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5224,7 +5224,7 @@ def cli(self, output=None):
' +(?P<fragment>(\d+))\. +Link +instance +is'
' +(?P<link_instance>(\d+))$')

p6 = re.compile(r'^Link +connected +to +(?P<type>([a-zA-Z\s]+))$')
p6 = re.compile(r'^Link +connected +to +(?P<type>([a-zA-Z-\s]+))$')

p7 = re.compile(r'^Link +ID *: +(?P<link_id>(\S+))$')

Expand Down Expand Up @@ -9122,4 +9122,4 @@ def cli(self, process_id=None, route=None, output=None):
repair_dict['cost'] = int(cost)
continue

return ret_dict
return ret_dict

0 comments on commit 81745df

Please sign in to comment.