From 9b3ae629f3ef06edaf395fb7710904e6dabcc8fe Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Fri, 20 Feb 2026 18:19:57 +0000 Subject: [PATCH] include the command in the error message --- src/q3rcon_tui/tui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/q3rcon_tui/tui.py b/src/q3rcon_tui/tui.py index e565bb5..d78b750 100644 --- a/src/q3rcon_tui/tui.py +++ b/src/q3rcon_tui/tui.py @@ -70,7 +70,7 @@ class RconApp(App): ) except RCONError: output = ( - 'Unable to execute command.', + f'Unable to execute command {cmd}. ', 'It may be due to a map change or a server restart.', 'If the problem persists, please check your connection settings and ensure the server is running.', )