[1.6.x] Fixed typo in docstrings of MonthArchiveViews.

Backport of 270c9fe488 from master
This commit is contained in:
Michael Blatherwick 2014-01-10 01:44:07 +00:00 committed by Tim Graham
parent 5d99cd6877
commit e694b0631f
1 changed files with 2 additions and 2 deletions
django/views/generic

View File

@ -481,7 +481,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'
@ -515,7 +515,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'