From a102942d7aaf964fc4995a30eb62a042dbb5cc73 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 20 Oct 2005 13:13:55 +0000 Subject: [PATCH] Fixed #654 -- Fixed bug in [969]. Thanks, korpios@gmail.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@976 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/utils/dateformat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/utils/dateformat.py b/django/utils/dateformat.py index 01903825d49..3620558f098 100644 --- a/django/utils/dateformat.py +++ b/django/utils/dateformat.py @@ -97,7 +97,7 @@ class TimeFormat(Formatter): "Seconds; i.e. '00' to '59'" return '%02d' % self.data.second -class DateFormat(Formatter): +class DateFormat(TimeFormat): year_days = [None, 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334] def __init__(self, d):