Skip to content

Commit

Permalink
<fix>app.py line 98 identation
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudio-C-Santos committed Mar 15, 2021
1 parent d127813 commit 64a1da9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def login():
# confirm password
if check_password_hash(
existing_user["password"], request.form.get("password")):
session["user"] = request.form.get("username").lower()
session["user"] = request.form.get("username").lower()
first_name = mongo.db.users.find_one(
{"username": session["user"]})["first_name"]
# return template with username,
Expand Down

0 comments on commit 64a1da9

Please sign in to comment.