From 63a3b5e8727a0a40acd0c81e1d98eddfa4cb6cae Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Tue, 29 May 2018 18:16:05 +0100 Subject: Add claim call to action on unclaimed accounts --- app/views/users.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/views') 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 -- cgit v1.2.3