Browse Source

fixed broken url name

master
Fr3deric 6 years ago
parent
commit
29e24df80f
  1. 2
      journalmarks/journalmarks.py

2
journalmarks/journalmarks.py

@ -93,7 +93,7 @@ def show_login(): @@ -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)

Loading…
Cancel
Save