home · contact · privacy
Improve ASCII art input length error message.
[plomrogue2] / rogue_chat_curses.py
index a6f152cc9483254e5a5952df9025fcab2017e3ef..ff0c46c579559e0faacbb8bee6ff07ac19b01ffc 100755 (executable)
@@ -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: