aboutsummaryrefslogtreecommitdiff
path: root/app/views/users.py
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-05-29 18:16:05 +0100
committerrubenwardy <rw@rubenwardy.com>2018-05-29 18:16:05 +0100
commit63a3b5e8727a0a40acd0c81e1d98eddfa4cb6cae (patch)
tree949c0eb4bb7f9c119a07770c1439984c89a372bd /app/views/users.py
parent6353ac29e93877aa840ace90b0c4ce9bea7db313 (diff)
downloadcheatdb-63a3b5e8727a0a40acd0c81e1d98eddfa4cb6cae.tar.xz
Add claim call to action on unclaimed accounts
Diffstat (limited to 'app/views/users.py')
-rw-r--r--app/views/users.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/users.py b/app/views/users.py
index 478596b..94fc30b 100644
--- a/app/views/users.py
+++ b/app/views/users.py
@@ -194,7 +194,7 @@ def user_claim_page():
user = User.query.filter_by(forums_username=username).first()
if user is not None and user.rank.atLeast(UserRank.NEW_MEMBER):
flash("That user has already been claimed!", "error")
- return redirect(url_for("user_claim_page", username=username))
+ return redirect(url_for("user_claim_page"))
# Get signature
sig = None