mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-04 15:38:43 +00:00
Fix json get_webui_config
This commit is contained in:
parent
f945a6f597
commit
3f3092cd8a
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ class json_rpc:
|
||||||
}
|
}
|
||||||
|
|
||||||
def get_webui_config(self):
|
def get_webui_config(self):
|
||||||
return dict([x for x in utils.config.config().iteritems() if not x[0].startswith("pwd")])
|
return dict([x for x in utils.config.config.iteritems() if not x[0].startswith("pwd")])
|
||||||
|
|
||||||
def set_webui_config(self, data):
|
def set_webui_config(self, data):
|
||||||
utils.validate_config(data)
|
utils.validate_config(data)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue