mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 09:26:27 +00:00
Fix string formatting error during email confirmation
This commit is contained in:
parent
1124801b7d
commit
bf69f71b9e
1 changed files with 1 additions and 1 deletions
|
@ -1063,7 +1063,7 @@ def process_email(request, req):
|
||||||
reversion.set_comment("Email confirmation")
|
reversion.set_comment("Email confirmation")
|
||||||
|
|
||||||
req.delete()
|
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 redirect(reverse("index"))
|
||||||
|
|
||||||
return form(
|
return form(
|
||||||
|
|
Loading…
Reference in a new issue