From 330442171fbb5e984c522f1ef2f234cb57b4fb1c Mon Sep 17 00:00:00 2001 From: Jennifer Richards <jennifer@painless-security.com> Date: Fri, 17 Mar 2023 19:23:51 -0300 Subject: [PATCH] fix: Remove accidentally doubled bracket in f-string (#5365) --- ietf/ietfauth/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/ietfauth/views.py b/ietf/ietfauth/views.py index fcd1d75d2..0473936bd 100644 --- a/ietf/ietfauth/views.py +++ b/ietf/ietfauth/views.py @@ -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