mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-04 17:06:27 +00:00
Fix string formatting error during email confirmation
This commit is contained in:
parent
dbefd3a0d7
commit
781c459db3
1 changed files with 1 additions and 1 deletions
|
@ -1063,7 +1063,7 @@ def process_email(request, req):
|
|||
reversion.set_comment("Email confirmation")
|
||||
|
||||
req.delete()
|
||||
messages.success(request, _("The %(email)s address was confirmed." % user.email))
|
||||
messages.success(request, _("The %s address was confirmed." % user.email))
|
||||
return redirect(reverse("index"))
|
||||
|
||||
return form(
|
||||
|
|
Loading…
Reference in a new issue