Skip to content
Snippets Groups Projects
Commit ed442e7c authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Merge branch 'fix-email-creation' into 'master'

Fix creation of mail addresses

See merge request !8
parents 48de5d65 319b00ff
No related branches found
No related tags found
1 merge request!8Fix creation of mail addresses
Pipeline #56484 failed
......@@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog`_,
and this project adheres to `Semantic Versioning`_.
Unreleased
----------
Fixed
~~~~~
* Fix creation on email addresses
`1.1`_
----------
......
......@@ -268,7 +268,7 @@ def set_email_needed(request, slug):
def is_email_needed(wizard):
if hasattr(wizard.request.session, "email_needed"):
if wizard.request.session.get("email_needed"):
wizard.request.session.pop("email_needed")
return True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment