diff options
author | rubenwardy <rw@rubenwardy.com> | 2019-11-21 19:38:26 +0000 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2019-11-21 19:38:32 +0000 |
commit | 39d4cf362b74d9c62b05c1a273de749b18368a12 (patch) | |
tree | b62c6ca3a6e15f7d543f1aca089b2fb34928312a /app/blueprints/users/profile.py | |
parent | b977a42738d4f4264108040221b234dd4a0f4a0a (diff) | |
download | cheatdb-39d4cf362b74d9c62b05c1a273de749b18368a12.tar.xz |
Fix url_for crash on "home_page"v1.19.0
Diffstat (limited to 'app/blueprints/users/profile.py')
-rw-r--r-- | app/blueprints/users/profile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/blueprints/users/profile.py b/app/blueprints/users/profile.py index a3c592c..8e6bfe9 100644 --- a/app/blueprints/users/profile.py +++ b/app/blueprints/users/profile.py @@ -306,4 +306,4 @@ def verify_email(): if current_user.is_authenticated: return redirect(url_for("users.profile", username=current_user.username)) else: - return redirect(url_for("home_page")) + return redirect(url_for("homepage.home")) |