From 014119c6c90c780062fc6a0d2239c31ab7ebe547 Mon Sep 17 00:00:00 2001 From: Antoine Catton Date: Mon, 25 Nov 2013 19:08:08 -0700 Subject: [PATCH] Add other valid format --- fusionbox/forms/fields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fusionbox/forms/fields.py b/fusionbox/forms/fields.py index d93d5b8..3e08283 100644 --- a/fusionbox/forms/fields.py +++ b/fusionbox/forms/fields.py @@ -204,7 +204,7 @@ def __init__(self, month, year): self.year = year def __init__(self, *args, **kwargs): - kwargs.setdefault('help_text', "MM / YY") + kwargs.setdefault('help_text', "MM / YY or MM / YYYY") super(CCExpirationDateField, self).__init__(*args, **kwargs) def clean(self, value):