From e05ccdc96fda85d6895537fb1c63c53d0e20fb14 Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Mon, 10 Feb 2014 10:24:46 +0100 Subject: [PATCH] make email address field not required --- organize/interfaces.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/organize/interfaces.py b/organize/interfaces.py index 5047f0e..b880f77 100644 --- a/organize/interfaces.py +++ b/organize/interfaces.py @@ -72,7 +72,8 @@ class IPerson(Interface): title=_(u'Last Name'), description=_(u'The last name or surname.'),) email = Email(title=_(u'E-Mail Address'), - description=_(u'The standard email address of the person.'),) + description=_(u'The standard email address of the person.'), + required=False) #phoneNumbers = SimpleList( phoneNumbers = schema.List( value_type=schema.TextLine(),