From 983c9dad997f66c266a2d5414c55b404f836e7be Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Fri, 6 May 2011 23:59:31 +0100 Subject: [PATCH] apply patch from #1548 --- deluge/ui/console/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/console/main.py b/deluge/ui/console/main.py index ddba4b59f..14833a42e 100644 --- a/deluge/ui/console/main.py +++ b/deluge/ui/console/main.py @@ -218,7 +218,7 @@ class ConsoleUI(component.Component): self.interactive = True self._commands = cmds if args: - args = args[0] + args = ' '.join(args) self.interactive = False if not cmds: print "Sorry, couldn't find any commands"