Fix #1450 Trailing white space in paths

This commit is contained in:
Calum Lind 2011-01-29 07:23:39 +00:00
parent 87f871f40a
commit 14746bf94d
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ class Command(BaseCommand):
deferred = defer.Deferred() deferred = defer.Deferred()
config = component.get("CoreConfig") config = component.get("CoreConfig")
key = options["set"][0] 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(): if key not in config.keys():
self.console.write("{!error!}The key '%s' is invalid!" % key) self.console.write("{!error!}The key '%s' is invalid!" % key)