From c67179cdbac12c9b314ea319aced11f60a26a0b9 Mon Sep 17 00:00:00 2001 From: John Burwell Date: Sun, 28 May 2023 14:07:02 -0500 Subject: [PATCH] fix multiline entry --- rsbbs/console.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rsbbs/console.py b/rsbbs/console.py index 0ba9252..73bf918 100644 --- a/rsbbs/console.py +++ b/rsbbs/console.py @@ -90,7 +90,7 @@ class Console(): self.write_output(prompt) while True: input_line = sys.stdin.readline() - if input_line.lower().strip() != "/ex": + if input_line.lower().strip() == "/ex": break input_lines.append(input_line) return ''.join(input_lines)