diff options
author | Bastian Köcher <git@kchr.de> | 2015-06-19 11:36:49 +0200 |
---|---|---|
committer | Bastian Köcher <git@kchr.de> | 2015-06-19 11:36:49 +0200 |
commit | 5bae2b3ea3d0da3ce4e1881513c5cab25c8196d7 (patch) | |
tree | 927b27eb41559b794a1230a6a59dd3db7426850d /pyload/webui/App/app.py | |
parent | General fixup (2) (diff) | |
download | pyload-5bae2b3ea3d0da3ce4e1881513c5cab25c8196d7.tar.xz |
Fixed bug in app.py with none existing variable.
Diffstat (limited to 'pyload/webui/App/app.py')
-rw-r--r-- | pyload/webui/App/app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/webui/App/app.py b/pyload/webui/App/app.py index bb4a2ff8e..4fade46de 100644 --- a/pyload/webui/App/app.py +++ b/pyload/webui/App/app.py @@ -138,7 +138,7 @@ def login_post(): if not info: return render_to_response("login.html", {"errors": True}, [pre_processor]) - set_session(request, info) + set_session(info) return bottle.redirect("/") |