mirror of
https://github.com/sileht/bird-lg.git
synced 2024-11-21 22:44:43 +01:00
Applying patch from @fduraffourg that fixes #9
This commit is contained in:
parent
2ce03ebbb0
commit
50b1f1387e
6
lg.py
6
lg.py
|
@ -575,7 +575,11 @@ def build_as_tree_from_raw_bird_ouput(host, proto, text):
|
||||||
net_dest = expr2.group(1).strip()
|
net_dest = expr2.group(1).strip()
|
||||||
|
|
||||||
if line.startswith("BGP.as_path:"):
|
if line.startswith("BGP.as_path:"):
|
||||||
path.extend(line.replace("BGP.as_path:", "").strip().split(" "))
|
ASes = line.replace("BGP.as_path:", "").strip().split(" ")
|
||||||
|
if path:
|
||||||
|
path.extend(ASes)
|
||||||
|
else:
|
||||||
|
path = ASes
|
||||||
|
|
||||||
if path:
|
if path:
|
||||||
path.append(net_dest)
|
path.append(net_dest)
|
||||||
|
|
Loading…
Reference in a new issue