mirror of https://github.com/django/django.git
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
This commit is contained in:
parent
e4c844ffa0
commit
a102942d7a
|
@ -97,7 +97,7 @@ class TimeFormat(Formatter):
|
||||||
"Seconds; i.e. '00' to '59'"
|
"Seconds; i.e. '00' to '59'"
|
||||||
return '%02d' % self.data.second
|
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]
|
year_days = [None, 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334]
|
||||||
|
|
||||||
def __init__(self, d):
|
def __init__(self, d):
|
||||||
|
|
Loading…
Reference in New Issue