From 3b86e8effe9aa77fa87f86a1057d12d4c8019324 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sat, 19 Dec 2020 05:35:13 +0100 Subject: [PATCH] Improve ASCII art input length error message. --- rogue_chat_curses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rogue_chat_curses.py b/rogue_chat_curses.py index a6f152c..ff0c46c 100755 --- a/rogue_chat_curses.py +++ b/rogue_chat_curses.py @@ -1158,7 +1158,7 @@ class TUI: def enter_ascii_art(command, height, width, with_pw=False): if len(self.input_) > width: - self.log_msg('? wrong input length, ' + self.log_msg('? input too long, ' 'must be max %s; try again' % width) return if len(self.input_) < width: -- 2.30.2