Skip to content

Commit 3304421

Browse files
fix: Remove accidentally doubled bracket in f-string (ietf-tools#5365)
1 parent 0faa2e4 commit 3304421

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/ietfauth/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def create_account(request):
131131
if to_email:
132132
send_account_creation_exists_email(request, new_account_email, to_email)
133133
else:
134-
raise ValidationError(f"Account for {{new_account_email}} exists, but cannot email it")
134+
raise ValidationError(f"Account for {new_account_email} exists, but cannot email it")
135135
else:
136136
# For the IETF 113 Registration period (at least) we are lowering the
137137
# barriers for account creation to the simple email round-trip check

0 commit comments

Comments
 (0)