queued command fix (#1074)

This commit is contained in:
Michel Oosterhof 2019-03-25 22:55:47 +04:00 committed by GitHub
parent 10d1dfde17
commit c02a473889
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ class HoneyPotCommand(object):
def lineReceived(self, line):
log.msg('QUEUED INPUT: {}'.format(line))
# FIXME: naive command parsing, see lineReceived below
line = "".join(line)
# line = "".join(line)
self.protocol.cmdstack[0].cmdpending.append(shlex.split(line, posix=False))
def resume(self):