aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/views/views.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-08-04 09:14:08 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-08-04 09:14:08 +0200
commit2bcedb16987aa75889a7f7091893775d6e58a8dc (patch)
treee51ebb5ece114b82670aa7afa27a77cd5f32a8db /pyaggr3g470r/views/views.py
parentMerged in jaesivsm/pyaggr3g470r (pull request #20) (diff)
downloadnewspipe-2bcedb16987aa75889a7f7091893775d6e58a8dc.tar.gz
newspipe-2bcedb16987aa75889a7f7091893775d6e58a8dc.tar.bz2
newspipe-2bcedb16987aa75889a7f7091893775d6e58a8dc.zip
By hoping this closes #9 without adding another bug.
Diffstat (limited to 'pyaggr3g470r/views/views.py')
-rw-r--r--pyaggr3g470r/views/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyaggr3g470r/views/views.py b/pyaggr3g470r/views/views.py
index b649d5c6..29b865e0 100644
--- a/pyaggr3g470r/views/views.py
+++ b/pyaggr3g470r/views/views.py
@@ -94,9 +94,9 @@ def before_request():
db.session.commit()
@login_manager.user_loader
-def load_user(email):
+def load_user(id):
# Return an instance of the User model
- return UserController().get(email=email)
+ return UserController().get(id=id)
#
bgstack15