Skip to content

Commit

Permalink
[IMP] auth_signup_verify_email: black, isort, prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
em230418 committed Oct 6, 2021
1 parent e3a1766 commit 96381e9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion auth_signup_verify_email/controllers/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ def passwordless_signup(self):
validate_email(values.get("login", ""))
except EmailSyntaxError as error:
qcontext["error"] = getattr(
error, "message", _("That does not seem to be an email address."),
error,
"message",
_("That does not seem to be an email address."),
)
return request.render("auth_signup.signup", qcontext)
except EmailUndeliverableError as error:
Expand Down

0 comments on commit 96381e9

Please sign in to comment.