diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2011-01-26 03:23:59 +0000 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2011-01-26 03:23:59 +0000 |
| commit | b4bf635cea92318e34d997cc614e7ff8233d015b (patch) | |
| tree | 3a4d574f0b6a16afdb58dbda1b1086edadce9ca9 | |
| parent | 9a317938ef2109da5e8d9cec5ee356d413e7ff47 (diff) | |
Fixed #15052 -- corrected an innacurate docstring in the generic views.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15315 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/views/generic/dates.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/views/generic/dates.py b/django/views/generic/dates.py index 8c95249593..c9e486b8cf 100644 --- a/django/views/generic/dates.py +++ b/django/views/generic/dates.py @@ -80,8 +80,8 @@ class DayMixin(object): def get_day_format(self): """ - Get a month format string in strptime syntax to be used to parse the - month from url variables. + Get a day format string in strptime syntax to be used to parse the day + from url variables. """ return self.day_format |
