Skip to content

Commit

Permalink
EOS BGP Description not getting retrieved
Browse files Browse the repository at this point in the history
  • Loading branch information
bharath-ravindranath authored and ktbyers committed Oct 3, 2018
1 parent 20cbf6e commit cd8e63d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion napalm/eos/eos.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class EOSDriver(NetworkDriver):

_RE_BGP_INFO = re.compile(r'BGP neighbor is (?P<neighbor>.*?), remote AS (?P<as>.*?), .*') # noqa
_RE_BGP_RID_INFO = re.compile(r'.*BGP version 4, remote router ID (?P<rid>.*?), VRF (?P<vrf>.*?)$') # noqa
_RE_BGP_DESC = re.compile(r'\s+Description: (?P<description>.*?)')
_RE_BGP_DESC = re.compile(r'\s+Description: (?P<description>.*?)$')
_RE_BGP_LOCAL = re.compile(r'Local AS is (?P<as>.*?),.*')
_RE_BGP_PREFIX = re.compile(r'(\s*?)(?P<af>IPv[46]) Unicast:\s*(?P<sent>\d+)\s*(?P<received>\d+)') # noqa
_RE_SNMP_COMM = re.compile(r"""^snmp-server\s+community\s+(?P<community>\S+)
Expand Down

0 comments on commit cd8e63d

Please sign in to comment.