diff options
Diffstat (limited to 'pyload/webui/app')
-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} |