diff options
| author | Jannis Leidel <jannis@leidel.info> | 2010-12-22 00:44:54 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2010-12-22 00:44:54 +0000 |
| commit | f0cd656ee085863d3a37f1bfb8351486428b4df2 (patch) | |
| tree | f3283abc38aae81fc7591150a1747e170877efa3 /django | |
| parent | b6ab88c34a99e7fc469eb4f6e0df9752f7f3100a (diff) | |
Fixed #14933 -- Added ability to SelectDateWidget to cope with new alternative month names added in [14900]. Thanks, alek and Claude Peroz.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15017 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
| -rw-r--r-- | django/forms/extras/widgets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/forms/extras/widgets.py b/django/forms/extras/widgets.py index 7d05942f43..8f13ed6c62 100644 --- a/django/forms/extras/widgets.py +++ b/django/forms/extras/widgets.py @@ -77,7 +77,7 @@ class SelectDateWidget(Widget): escaped = True elif char in 'Yy': output.append(year_html) - elif char in 'bFMmNn': + elif char in 'bEFMmNn': output.append(month_html) elif char in 'dj': output.append(day_html) |
