From 483c439e385fea093d3ea33d6de5c40bb35b4042 Mon Sep 17 00:00:00 2001 From: Dan39 Date: Thu, 19 Apr 2012 15:52:44 +0100 Subject: [PATCH] Fix #2065 : Console crash with missing closing quote --- deluge/ui/console/main.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/deluge/ui/console/main.py b/deluge/ui/console/main.py index 174d667bd..f6653061e 100644 --- a/deluge/ui/console/main.py +++ b/deluge/ui/console/main.py @@ -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