Skip to content
This repository has been archived by the owner on Sep 17, 2019. It is now read-only.

Commit

Permalink
Correct line length
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceaulinic authored Jul 12, 2017
1 parent f600675 commit 9e46bc7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion napalm_iosxr/iosxr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,8 @@ def get_ntp_stats(self):

xpath = './/NodeTable/Node/Associations/PeerSummaryInfo/Entry/PeerInfoCommon'
for node in result_tree.xpath(xpath):
synchronized = ast.literal_eval(napalm_base.helpers.find_txt(node, 'IsSysPeer', 'false').title())
synchronized = ast.literal_eval(
napalm_base.helpers.find_txt(node, 'IsSysPeer', 'false').title())
address = napalm_base.helpers.find_txt(node, 'Address')
if address == 'DLRSC node':
continue
Expand Down

0 comments on commit 9e46bc7

Please sign in to comment.