Commit 5144f72b authored by Timo Graham's avatar Timo Graham
Browse files

[1.3.X] Fixed #17685 - Typo in BaseDateListView.get_dated_items(); thanks ejb.

Backport of r17548 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@17549 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 813dc01c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -781,11 +781,11 @@ BaseDateListView

    .. method:: get_dated_items():

        Returns a 3-tuple containing (``date_list``, ``latest``,
        Returns a 3-tuple containing (``date_list``, ``object_list``,
        ``extra_context``).

        ``date_list`` is the list of dates for which data is available.
        ``object_list`` is the list of objects ``extra_context`` is a
        ``object_list`` is the list of objects. ``extra_context`` is a
        dictionary of context data that will be added to any context data
        provided by the
        :class:`~django.views.generic.list.MultipleObjectMixin`.