mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
Fix #1450 Trailing white space in paths
This commit is contained in:
parent
5f168f3a25
commit
e1896d2ace
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue