mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
Fix #2065 : Console crash with missing closing quote
This commit is contained in:
parent
acecd6d522
commit
266127bb69
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue