aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-24 14:41:31 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-24 14:41:31 +0200
commitb345dfbd7b3be09f652fa4a76686f7584b3a60e7 (patch)
tree1802cb7236ebe05ad1d01fc2290747337002f8b6 /pyaggr3g470r
parentRemoved trailing slashes from the routes. (diff)
downloadnewspipe-b345dfbd7b3be09f652fa4a76686f7584b3a60e7.tar.gz
newspipe-b345dfbd7b3be09f652fa4a76686f7584b3a60e7.tar.bz2
newspipe-b345dfbd7b3be09f652fa4a76686f7584b3a60e7.zip
No trailing space for the 'logout' view.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py
index 9525ac9b..9081795e 100644
--- a/pyaggr3g470r/views.py
+++ b/pyaggr3g470r/views.py
@@ -157,7 +157,7 @@ def login():
return redirect(url_for('home'))
return render_template('login.html', form=form)
-@app.route('/logout/')
+@app.route('/logout')
@login_required
def logout():
"""
bgstack15