fix: Remove accidentally doubled bracket in f-string (#5365)

This commit is contained in:
Jennifer Richards 2023-03-17 19:23:51 -03:00 committed by GitHub
parent 0faa2e40e7
commit 330442171f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -131,7 +131,7 @@ def create_account(request):
if to_email:
send_account_creation_exists_email(request, new_account_email, to_email)
else:
raise ValidationError(f"Account for {{new_account_email}} exists, but cannot email it")
raise ValidationError(f"Account for {new_account_email} exists, but cannot email it")
else:
# For the IETF 113 Registration period (at least) we are lowering the
# barriers for account creation to the simple email round-trip check