From 6500c428eca35070a69e17d061663539d2aa07d2 Mon Sep 17 00:00:00 2001 From: remittor Date: Thu, 17 Apr 2025 21:30:37 +0300 Subject: [PATCH] gateway: Fix error message into get_telnet --- gateway.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gateway.py b/gateway.py index 3f4adb1..f409bee 100644 --- a/gateway.py +++ b/gateway.py @@ -798,7 +798,7 @@ class Gateway(): tn = telnetlib.Telnet(self.ip_addr, timeout=4) except Exception as e: if verbose: - die("TELNET not responding (IP: {self.ip_addr})") + die(f"TELNET not responding (IP: {self.ip_addr})") return None try: p_login = b'login: '