Skip to content

Commit a1d68e0

Browse files
committed
Fix issue with direct merge into master (i.e. undo those changes)
1 parent cb5d7dd commit a1d68e0

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

docs/support/eos.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ EOS
44
Minimum Version
55
~~~~~~~~~~~~~~~
66

7-
To be able to support the ``compare_config``, ``load_merge_candidate`` or ``load_replace_candidate`` methods you will require to run at least EOS version `4.15.0F`.
7+
To be able to support the ``compare_config`` method you will require to run at least EOS version `4.15.0F`.
88

99
Multi-line/HEREDOC
1010
~~~~~~~~~~~~~~~~~~

napalm/ios/ios.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1279,10 +1279,7 @@ def get_bgp_neighbors(self):
12791279
napalm.base.helpers.ip(neighbor['remote_addr']) == remote_addr):
12801280
neighbor_entry = neighbor
12811281
break
1282-
# check for proper session data for the afi
1283-
if neighbor_entry is None:
1284-
continue
1285-
elif not isinstance(neighbor_entry, dict):
1282+
if not isinstance(neighbor_entry, dict):
12861283
raise ValueError(msg="Couldn't find neighbor data for %s in afi %s" %
12871284
(remote_addr, afi))
12881285

0 commit comments

Comments
 (0)