From 8d9e151030c2708e1c103e8d0676d0621171dcbf Mon Sep 17 00:00:00 2001 From: Arthur Date: Fri, 6 Jan 2023 08:51:26 -0800 Subject: [PATCH] 11416 fix circuit termination deletion --- netbox/dcim/models/cables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/dcim/models/cables.py b/netbox/dcim/models/cables.py index 6fd99d18a..062734355 100644 --- a/netbox/dcim/models/cables.py +++ b/netbox/dcim/models/cables.py @@ -537,7 +537,7 @@ class CablePath(models.Model): # Step 5: Record the far-end termination object(s) path.append([ - object_to_path_node(t) for t in remote_terminations + object_to_path_node(t) for t in remote_terminations if t is not None ]) # Step 6: Determine the "next hop" terminations, if applicable