From 29e24df80f4a769817637e7405ac5caab147c978 Mon Sep 17 00:00:00 2001 From: Frederic Date: Sat, 3 Mar 2018 13:14:07 +0100 Subject: [PATCH] fixed broken url name --- journalmarks/journalmarks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/journalmarks/journalmarks.py b/journalmarks/journalmarks.py index a997681..1c270a3 100644 --- a/journalmarks/journalmarks.py +++ b/journalmarks/journalmarks.py @@ -93,7 +93,7 @@ def show_login(): if 'next' in request.args and urlparse(request.args['next']).netloc == '': next = request.args['next'] else: - next = url_for('journalmarks.journalmarks.index') + next = url_for('journalmarks.index') return render_template('login.html', next=next)