From 5bae2b3ea3d0da3ce4e1881513c5cab25c8196d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Fri, 19 Jun 2015 11:36:49 +0200 Subject: Fixed bug in app.py with none existing variable. --- pyload/webui/App/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pyload/webui/App/app.py') 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("/") -- cgit v1.2.3