diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-13 15:56:57 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-13 15:56:57 +0100 |
commit | acc46fc3497a66a427b795b4a22c6e71d69185a1 (patch) | |
tree | 2d315b838a76435fc456b972c99c28d1732b2f70 /pyload/webui | |
parent | Code fixes (diff) | |
download | pyload-acc46fc3497a66a427b795b4a22c6e71d69185a1.tar.xz |
Update
Diffstat (limited to 'pyload/webui')
-rw-r--r-- | pyload/webui/app/pyload.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pyload/webui/app/pyload.py b/pyload/webui/app/pyload.py index ccd2c30f0..2d1a8eb86 100644 --- a/pyload/webui/app/pyload.py +++ b/pyload/webui/app/pyload.py @@ -46,12 +46,12 @@ def pre_processor(): plugins = True - return {"user": user, - 'status': status, + return {"user" : user, + 'status' : status, 'captcha': captcha, - 'perms': perms, - 'url': request.url, - 'update': update, + 'perms' : perms, + 'url' : request.url, + 'update' : update, 'plugins': plugins} |