diff options
author | 2015-06-19 14:22:51 +0200 | |
---|---|---|
committer | 2015-06-19 14:22:51 +0200 | |
commit | 3abaaac6a604882eccab34fb6364f77b29c436ce (patch) | |
tree | 927b27eb41559b794a1230a6a59dd3db7426850d /pyload/webui/App/app.py | |
parent | General fixup (2) (diff) | |
parent | Fixed bug in app.py with none existing variable. (diff) | |
download | pyload-3abaaac6a604882eccab34fb6364f77b29c436ce.tar.xz |
Merge pull request #1525 from bkchr/app-fix
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("/") |