1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Remove legacy connection_status fields

This commit is contained in:
Jeremy Stretch
2020-10-05 10:08:16 -04:00
parent 079c42291c
commit df73737128
11 changed files with 61 additions and 84 deletions

View File

@ -26,7 +26,7 @@ def trace_path(node):
position_stack = []
is_connected = True
if node.cable is None:
if node is None or node.cable is None:
return [], None, False
while node.cable is not None: