From 159c122f6706d6cb4f7d8044e419533c45819fe5 Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Thu, 15 Jun 2023 01:04:05 +0200 Subject: [PATCH] Use the new TopoProvider in poor_mans_visualisation.py --- poor_mans_visualisation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poor_mans_visualisation.py b/poor_mans_visualisation.py index 3641733..7a6d2db 100755 --- a/poor_mans_visualisation.py +++ b/poor_mans_visualisation.py @@ -14,7 +14,7 @@ with open(ref_topo_file) as ref_file: ref_topo = providers.OspfFileTopologyProvider(ref_file).get_topology() try: - cur_topo = providers.RunningBirdTopologyProvider().get_topology() + cur_topo = providers.BirdSocketTopologyProvider().get_topology() except OSError: # HACK! import traceback as tb