diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-10 17:52:35 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-10 17:52:35 +0200 |
commit | 8b850d64a14d7c8d691c4ec08bb9a3daf9a3dfa2 (patch) | |
tree | 1a258c5eb39dfe0879d511256cc78cad1c3b79c8 /pyload/webui/app/pyloadweb.py | |
parent | Merge pull request #2 from ardi69/0.4.10 (diff) | |
download | pyload-8b850d64a14d7c8d691c4ec08bb9a3daf9a3dfa2.tar.xz |
Cleanup
Diffstat (limited to 'pyload/webui/app/pyloadweb.py')
-rw-r--r-- | pyload/webui/app/pyloadweb.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pyload/webui/app/pyloadweb.py b/pyload/webui/app/pyloadweb.py index d71d0d306..85f3f8ca1 100644 --- a/pyload/webui/app/pyloadweb.py +++ b/pyload/webui/app/pyloadweb.py @@ -517,14 +517,14 @@ def info(): else: extra = tuple() - data = {"python": sys.version, - "os": " ".join((os.name, sys.platform) + extra), - "version": PYLOAD.getServerVersion(), - "folder": abspath(PYLOAD_DIR), "config": abspath(""), - "download": abspath(conf["general"]["download_folder"]["value"]), + data = {"python" : sys.version, + "os" : " ".join((os.name, sys.platform) + extra), + "version" : PYLOAD.getServerVersion(), + "folder" : abspath(PYLOAD_DIR), "config": abspath(""), + "download" : abspath(conf["general"]["download_folder"]["value"]), "freespace": formatSize(PYLOAD.freeSpace()), - "remote": conf["remote"]["port"]["value"], - "webif": conf["webinterface"]["port"]["value"], - "language": conf["general"]["language"]["value"]} + "remote" : conf["remote"]["port"]["value"], + "webif" : conf["webui"]["port"]["value"], + "language" : conf["general"]["language"]["value"]} return render_to_response("info.html", data, [pre_processor]) |