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:
Rafael Zalamena 2018-08-27 13:48:45 -03:00 committed by Donald Sharp
parent 41077aa191
commit 0eff58207e

View File

@ -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:]