Fix #2065 : Console crash with missing closing quote
This commit is contained in:
parent
914413c88f
commit
483c439e38
|
@ -295,7 +295,12 @@ Please use commands from the command line, eg:\n
|
|||
except KeyError:
|
||||
self.write("{!error!}Unknown command: %s" % cmd)
|
||||
return
|
||||
args = self._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
|
||||
|
|
Loading…
Reference in New Issue