Rename CablePath.is_connected to is_active

This commit is contained in:
Jeremy Stretch
2020-10-05 11:13:33 -04:00
parent 13db22d392
commit 3d34f1cdcb
9 changed files with 65 additions and 65 deletions

View File

@@ -2088,7 +2088,7 @@ class ConsoleConnectionsListView(ObjectListView):
obj._path.destination.name if obj._path.destination else None,
obj.device.identifier,
obj.name,
'Connected' if obj._path.is_connected else 'Not Connected',
'Connected' if obj._path.is_active else 'Not Connected',
])
csv_data.append(csv)
@@ -2115,7 +2115,7 @@ class PowerConnectionsListView(ObjectListView):
obj._path.destination.name if obj._path.destination else None,
obj.device.identifier,
obj.name,
'Connected' if obj._path.is_connected else 'Not Connected',
'Connected' if obj._path.is_active else 'Not Connected',
])
csv_data.append(csv)
@@ -2148,7 +2148,7 @@ class InterfaceConnectionsListView(ObjectListView):
obj._path.destination.name if obj._path.destination else None,
obj.device.identifier,
obj.name,
'Connected' if obj._path.is_connected else 'Not Connected',
'Connected' if obj._path.is_active else 'Not Connected',
])
csv_data.append(csv)