diff --git a/Large-app-how-to.md b/Large-app-how-to.md index 03354e0..aba86bc 100644 --- a/Large-app-how-to.md +++ b/Large-app-how-to.md @@ -257,7 +257,7 @@ This decorator is checking that g.user has a value assigned to it, otherwise it """ g.user = None if 'user_id' in session: - g.user = User.query.get(session['user_id']); + g.user = User.query.get(session['user_id']) @mod.route('/login/', methods=['GET', 'POST']) def login():