From d6952046fcd8844c787c3c39ff0bb20cefa9beea Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sun, 6 Nov 2022 19:35:20 +0100 Subject: [PATCH] diagnosis: fix old typo in ip diagnoser --- src/diagnosers/10-ip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/diagnosers/10-ip.py b/src/diagnosers/10-ip.py index d440f76dd..b2bedc802 100644 --- a/src/diagnosers/10-ip.py +++ b/src/diagnosers/10-ip.py @@ -237,5 +237,5 @@ class MyDiagnoser(Diagnoser): except Exception as e: protocol = str(protocol) e = str(e) - self.logger_debug(f"Could not get public IPv{protocol} : {e}") + logger.debug(f"Could not get public IPv{protocol} : {e}") return None