From 9b5659ba98f67e92ec38c86758b7aece9bc9638e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 24 Nov 2011 09:55:39 +0100 Subject: [PATCH] do not require end time --- tabellio/agenda/event.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabellio/agenda/event.py b/tabellio/agenda/event.py index e801a14..6e6b475 100644 --- a/tabellio/agenda/event.py +++ b/tabellio/agenda/event.py @@ -24,7 +24,7 @@ class IBaseEvent(form.Schema): place = schema.TextLine(title=_(u'Place')) start = schema.Datetime(title=_(u'Start')) - end = schema.Datetime(title=_(u'End')) + end = schema.Datetime(title=_(u'End'), required=False)