Commit 623592e0 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #14554 -- Raise the actual NotImplementedError exception, not the...

Fixed #14554 -- Raise the actual NotImplementedError exception, not the NotImplemented comparison value. Thanks to mattmcc for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14373 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent baa1e90d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -178,7 +178,7 @@ class BaseDateListView(MultipleObjectMixin, DateMixin, View):
        """
        Obtain the list of dates and itesm
        """
        raise NotImplemented('A DateView must provide an implementaiton of get_dated_items()')
        raise NotImplementedError('A DateView must provide an implementation of get_dated_items()')

    def get_dated_queryset(self, **lookup):
        """