diff options
| author | Michael Blatherwick <michael.blatherwick@exeter.oxon.org> | 2014-01-10 01:44:07 +0000 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-01-10 08:25:22 -0500 |
| commit | 270c9fe48883deaacbc15014ceebef6f895559ab (patch) | |
| tree | 535ee89c42dd6fc5d5c5e0e8290e14bad0aadbe2 | |
| parent | 9eb16031ca837624433c49646289b50f9566a25d (diff) | |
Fixed typo in docstrings of MonthArchiveViews.
| -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 d221c2c087..2011c6f4be 100644 --- a/django/views/generic/dates.py +++ b/django/views/generic/dates.py @@ -482,7 +482,7 @@ class YearArchiveView(MultipleObjectTemplateResponseMixin, BaseYearArchiveView): class BaseMonthArchiveView(YearMixin, MonthMixin, BaseDateListView): """ - List of objects published in a given year. + List of objects published in a given month. """ date_list_period = 'day' @@ -516,7 +516,7 @@ class BaseMonthArchiveView(YearMixin, MonthMixin, BaseDateListView): class MonthArchiveView(MultipleObjectTemplateResponseMixin, BaseMonthArchiveView): """ - List of objects published in a given year. + List of objects published in a given month. """ template_name_suffix = '_archive_month' |
