Module: deluge
Branch: master
Commit: 14746bf94da94b6a3ae3fd246cfaf9badacdbb3e

Author: Calum Lind <[email protected]>
Date:   Sat Jan 29 07:23:39 2011 +0000

Fix #1450 Trailing white space in paths

---

 deluge/ui/console/commands/config.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/deluge/ui/console/commands/config.py 
b/deluge/ui/console/commands/config.py
index e74ad34..e64923c 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)

-- 
You received this message because you are subscribed to the Google Groups 
"deluge-commit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/deluge-commit?hl=en.

Reply via email to