From d08b50e4be36f458ff5397a05fb9b4642fc548fe Mon Sep 17 00:00:00 2001 From: Fabian Ihle Date: Wed, 31 Jul 2024 11:04:50 +0200 Subject: [PATCH] Fix crash in topology load for terminals --- netsim/api/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netsim/api/__init__.py b/netsim/api/__init__.py index fe08826..7ec3752 100644 --- a/netsim/api/__init__.py +++ b/netsim/api/__init__.py @@ -92,7 +92,7 @@ def init_clis(self): # Stop CLIs that are still running for name, cli in self.clis.items(): - cli.stop() + cli.node.stop() # Delete old dictionary self.clis = {}