From 844b6551c5d329a1ec1c777c5fc725874d85cd14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89lie=20Bouttier?= Date: Sun, 17 Aug 2014 12:37:21 -0700 Subject: [PATCH] fix: milestone form datetime format --- issue/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/issue/forms.py b/issue/forms.py index 01e92b0..7641652 100644 --- a/issue/forms.py +++ b/issue/forms.py @@ -23,7 +23,7 @@ class MilestoneForm(forms.ModelForm): model = Milestone fields = ['name', 'due_date'] widgets = { - 'due_date': DateTimePicker(format="YYYY-MM-DD HH:mm"), + 'due_date': DateTimePicker(format="%Y-%m-%d %H:%M"), }