From bdd167ddfb1e17f1f272fd0ce675e871f4ffcb7f Mon Sep 17 00:00:00 2001 From: Gordon Shumway <39967334+oddluck@users.noreply.github.com> Date: Tue, 10 Dec 2019 09:25:50 -0500 Subject: [PATCH] prompt cleanup --- TextAdventures/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TextAdventures/plugin.py b/TextAdventures/plugin.py index 788459a..ddc45f9 100644 --- a/TextAdventures/plugin.py +++ b/TextAdventures/plugin.py @@ -62,7 +62,7 @@ class TextAdventures(callbacks.Plugin): def output(self, output): response = [] - prompts = ["\n> >", "\n>\r\n>", "\n>", "\n\)", pexpect.TIMEOUT] + prompts = ["\n> >", "\n>", "\n\)", pexpect.TIMEOUT] output.expect(prompts, timeout=1) response = output.before response = response.decode().splitlines()