increase timeout until i make it configurable

This commit is contained in:
Gordon Shumway 2019-02-19 03:45:36 -05:00 committed by GitHub
parent 8aadb91990
commit c2784e62f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ class MUD(callbacks.Plugin):
def output(self, output):
response = []
response = output.read_until(b"\a", timeout=1)
response = output.read_until(b"\a", timeout=2)
clean = []
for line in response.splitlines():
clean.append(self.ansi_escape.sub('', line.decode()))