diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-06-24 14:41:31 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-06-24 14:41:31 +0200 |
commit | b345dfbd7b3be09f652fa4a76686f7584b3a60e7 (patch) | |
tree | 1802cb7236ebe05ad1d01fc2290747337002f8b6 /pyaggr3g470r | |
parent | Removed trailing slashes from the routes. (diff) | |
download | newspipe-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.py | 2 |
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(): """ |