Skip to content
This repository was archived by the owner on Feb 10, 2018. It is now read-only.

Commit

Permalink
Merge pull request #175 from napalm-automation/develop
Browse files Browse the repository at this point in the history
Release 0.10.3
  • Loading branch information
mirceaulinic authored Jun 26, 2017
2 parents 4acf660 + 749031c commit 564817e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion napalm_junos/junos.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ def _get_bgp_neighbors_core(neighbor_data, instance=None, uptime_table_items=Non
if 'router_id' not in bgp_neighbor_data[instance_name]:
# we only need to set this once
bgp_neighbor_data[instance_name]['router_id'] = \
py23_compat.text_type(neighbor_details['local_id'])
py23_compat.text_type(neighbor_details.get('local_id', ''))
peer = {
key: self._parse_value(value)
for key, value in neighbor_details.items()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name="napalm-junos",
version="0.10.2",
version="0.10.3",
packages=find_packages(),
author="David Barroso, Mircea Ulinic",
author_email="dbarrosop@dravetech.com, mircea@cloudflare.com",
Expand Down

0 comments on commit 564817e

Please sign in to comment.