mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-13 19:39:28 +00:00
lib: fix ip4_route_zebra
header removal code
The `strip` function is actually a method of the String object. Signed-off-by: Rafael Zalamena <rzalamena@opensourcerouting.org>
This commit is contained in:
parent
41077aa191
commit
0eff58207e
@ -428,8 +428,7 @@ def ip4_route_zebra(node, vrf_name=None):
|
||||
|
||||
lines = output.splitlines()
|
||||
header_found = False
|
||||
while lines and (not strip(lines[0])
|
||||
or not header_found):
|
||||
while lines and (not lines[0].strip() or not header_found):
|
||||
if '> - selected route' in lines[0]:
|
||||
header_found = True
|
||||
lines = lines[1:]
|
||||
|
Loading…
Reference in New Issue
Block a user