1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-23 00:29:59 +02:00

fix next_hop fix

This commit is contained in:
Kelly Brazil
2020-07-27 15:20:51 -07:00
parent f9dacc3f95
commit e604571578

View File

@ -184,7 +184,7 @@ def parse(data, raw=False, quiet=False):
cleandata = data.splitlines()[1:]
# fixup header row for ipv6
cleandata[0].replace('Next Hop', 'Next_Hop')
cleandata[0] = cleandata[0].replace('Next Hop', 'Next_Hop')
raw_output = []