Fix #2065 : Console crash with missing closing quote

This commit is contained in:
Dan39 2012-04-19 15:52:44 +01:00 committed by Calum Lind
parent acecd6d522
commit 266127bb69
1 changed files with 6 additions and 1 deletions

View File

@ -418,7 +418,12 @@ class Legacy(BaseMode):
except KeyError:
self.write("{!error!}Unknown command: %s" % cmd)
return
args = self.console._commands[cmd].split(line)
try:
args = self._commands[cmd].split(line)
except ValueError, e:
self.write("{!error!}Error parsing command: %s" % e)
return
# Do a little hack here to print 'command --help' properly
parser._print_help = parser.print_help