summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Blatherwick <michael.blatherwick@exeter.oxon.org>2014-01-10 01:44:07 +0000
committerTim Graham <timograham@gmail.com>2014-01-10 08:26:22 -0500
commite694b0631f6f33a4c16b3f9650dff67c55b2c830 (patch)
tree5fd3730fab67952e30fd3ce1b3456b9209674664
parent5d99cd6877377824a6a5de92475ad0572ab6fb0f (diff)
[1.6.x] Fixed typo in docstrings of MonthArchiveViews.
Backport of 270c9fe488 from master
-rw-r--r--django/views/generic/dates.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/views/generic/dates.py b/django/views/generic/dates.py
index 29efc7dfac..1b8ad3e9a3 100644
--- a/django/views/generic/dates.py
+++ b/django/views/generic/dates.py
@@ -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'