From c51efebf956471733f2b3b72930fc526f9f75943 Mon Sep 17 00:00:00 2001 From: Ian Jauslin Date: Thu, 5 Dec 2024 11:56:44 -0500 Subject: [PATCH] Corrected error message --- src/command_prompt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command_prompt.py b/src/command_prompt.py index 5046997..06000ad 100644 --- a/src/command_prompt.py +++ b/src/command_prompt.py @@ -393,7 +393,7 @@ class Command_prompt(Label): elif argv[2]=="2square": self.app.painter.shape=Square2 else: - self.message="error: unrecognized shape '"+argv[2]+"'; supported shapes are cross|disk" + self.message="error: unrecognized shape '"+argv[2]+"'; supported shapes are cross|disk|staircase|2square" return # toggle grid