From e1896d2ace867e4ce66c1e7531e1ab14a8cb9825 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Sat, 29 Jan 2011 07:23:39 +0000 Subject: [PATCH] Fix #1450 Trailing white space in paths --- deluge/ui/console/commands/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/console/commands/config.py b/deluge/ui/console/commands/config.py index 54ef15ee5..3f7001347 100644 --- a/deluge/ui/console/commands/config.py +++ b/deluge/ui/console/commands/config.py @@ -131,7 +131,7 @@ class Command(BaseCommand): deferred = defer.Deferred() config = component.get("CoreConfig") key = options["set"][0] - val = simple_eval(options["set"][1] + " " + " ".join(args)) + val = simple_eval(options["set"][1] + " " .join(args)) if key not in config.keys(): self.console.write("{!error!}The key '%s' is invalid!" % key)