diff --git a/app/routes.py b/app/routes.py index 277c162..753dda4 100644 --- a/app/routes.py +++ b/app/routes.py @@ -372,7 +372,6 @@ def login(): current_user.last_seen = datetime.datetime.utcnow() db.session.commit() next_page = request.args.get('next') - print(current_user.last_seen) if not next_page or url_parse(next_page).netloc != '': next_page = url_for('index') return redirect(next_page)