From 14746bf94da94b6a3ae3fd246cfaf9badacdbb3e 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 e74ad344e..e64923c60 100644 --- a/deluge/ui/console/commands/config.py +++ b/deluge/ui/console/commands/config.py @@ -133,7 +133,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)