From ced1e0ea9a696d7890df6e7206cc8732bb40d29f Mon Sep 17 00:00:00 2001 From: Peter Woxblom Date: Sun, 16 Aug 2026 09:40:52 +0200 Subject: [PATCH] infamy: fix NameError in Topology.get_password (qstrip -> _qstrip) The password attribute was read with a call to qstrip(), but the helper is named _qstrip(). Any physical topology that sets a per-node password (or an unquoted value needing stripping) crashed with NameError during attach. Co-authored-by: Jarvis (Hermes Agent) --- test/infamy/topology.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/infamy/topology.py b/test/infamy/topology.py index 2332945ea..b0b1498de 100644 --- a/test/infamy/topology.py +++ b/test/infamy/topology.py @@ -129,7 +129,7 @@ def get_password(self, node): b = n[0] if n else {} password = b.get("password") - return qstrip(password) if password is not None else "admin" + return _qstrip(password) if password is not None else "admin" def get_expected_boot(self, node): n = self.dotg.get_node(node)