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

Commit 564817e

Browse files
authored
Merge pull request #175 from napalm-automation/develop
Release 0.10.3
2 parents 4acf660 + 749031c commit 564817e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

napalm_junos/junos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ def _get_bgp_neighbors_core(neighbor_data, instance=None, uptime_table_items=Non
535535
if 'router_id' not in bgp_neighbor_data[instance_name]:
536536
# we only need to set this once
537537
bgp_neighbor_data[instance_name]['router_id'] = \
538-
py23_compat.text_type(neighbor_details['local_id'])
538+
py23_compat.text_type(neighbor_details.get('local_id', ''))
539539
peer = {
540540
key: self._parse_value(value)
541541
for key, value in neighbor_details.items()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name="napalm-junos",
15-
version="0.10.2",
15+
version="0.10.3",
1616
packages=find_packages(),
1717
author="David Barroso, Mircea Ulinic",
1818

0 commit comments

Comments
 (0)