Skip to content

Commit

Permalink
Fix issue with direct merge into master (i.e. undo those changes)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed Oct 25, 2018
1 parent cb5d7dd commit a1d68e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/support/eos.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ EOS
Minimum Version
~~~~~~~~~~~~~~~

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`.
To be able to support the ``compare_config`` method you will require to run at least EOS version `4.15.0F`.

Multi-line/HEREDOC
~~~~~~~~~~~~~~~~~~
Expand Down
5 changes: 1 addition & 4 deletions napalm/ios/ios.py
Original file line number Diff line number Diff line change
Expand Up @@ -1279,10 +1279,7 @@ def get_bgp_neighbors(self):
napalm.base.helpers.ip(neighbor['remote_addr']) == remote_addr):
neighbor_entry = neighbor
break
# check for proper session data for the afi
if neighbor_entry is None:
continue
elif not isinstance(neighbor_entry, dict):
if not isinstance(neighbor_entry, dict):
raise ValueError(msg="Couldn't find neighbor data for %s in afi %s" %
(remote_addr, afi))

Expand Down

0 comments on commit a1d68e0

Please sign in to comment.