mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-04 07:28:39 +00:00
Fix #1450 Trailing white space in paths
This commit is contained in:
parent
87f871f40a
commit
14746bf94d
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue