diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-19 14:22:51 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-19 14:22:51 +0200 |
commit | 3abaaac6a604882eccab34fb6364f77b29c436ce (patch) | |
tree | 927b27eb41559b794a1230a6a59dd3db7426850d /pyload/webui/App/utils.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/utils.py')
-rw-r--r-- | pyload/webui/App/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/webui/App/utils.py b/pyload/webui/App/utils.py index e827552df..fe8fd1605 100644 --- a/pyload/webui/App/utils.py +++ b/pyload/webui/App/utils.py @@ -65,7 +65,7 @@ def set_permission(perms): return permission -def set_session(request, info): +def set_session(info): s = bottle.request.environ.get('beaker.session') s['authenticated'] = True s['user_id'] = info['id'] |