From 4da540f1895ffed6648379ef6926bca765b5eb92 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Sat, 11 May 2024 12:40:28 +0200 Subject: [PATCH] Fixed missing format string declarator --- rnsh/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rnsh/process.py b/rnsh/process.py index f583cb7..9bbe770 100644 --- a/rnsh/process.py +++ b/rnsh/process.py @@ -134,7 +134,7 @@ def tty_read_poll(fd: int) -> bytes: except EOFError: raise except Exception as ex: - module_logger.error("tty_read error: {ex}") + module_logger.error(f"tty_read error: {ex}") return result