diff --git a/app/routes.py b/app/routes.py index a6b137d..440b8cf 100644 --- a/app/routes.py +++ b/app/routes.py @@ -45,8 +45,6 @@ ALLOWED_EXTENSIONS = {'json', 'db'} @app.route('/index') @login_required def index(): - current_user.last_seen = datetime.datetime.utcnow() - db.session.commit() return render_template('home.html') @app.route('/twitter')