Skip to content

Commit

Permalink
Fixed #19370 -- Made date filter properly handle midnight value
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrgn authored and claudep committed Nov 27, 2012
1 parent d37483c commit c10aaa7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion django/template/defaultfilters.py
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ def get_digit(value, arg):
@register.filter(expects_localtime=True, is_safe=False)
def date(value, arg=None):
"""Formats a date according to the given format."""
if not value:
if value in (None, ''):
return ''
if arg is None:
arg = settings.DATE_FORMAT
Expand Down
5 changes: 4 additions & 1 deletion tests/regressiontests/templates/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""
from __future__ import unicode_literals

from datetime import date, datetime, timedelta
from datetime import date, datetime, time, timedelta

from django.test.utils import str_prefix
from django.utils.tzinfo import LocalTimezone, FixedOffset
Expand Down Expand Up @@ -356,6 +356,9 @@ def get_filter_tests():
# Timezone name
'date06': (r'{{ d|date:"e" }}', {'d': datetime(2009, 3, 12, tzinfo=FixedOffset(30))}, '+0030'),
'date07': (r'{{ d|date:"e" }}', {'d': datetime(2009, 3, 12)}, ''),
# Ticket 19370: Make sure |date doesn't blow up on a midnight time object
'date08': (r'{{ t|date:"H:i" }}', {'t': time(0, 1)}, '00:01'),
'date09': (r'{{ t|date:"H:i" }}', {'t': time(0, 0)}, '00:00'),

# Tests for #11687 and #16676
'add01': (r'{{ i|add:"5" }}', {'i': 2000}, '2005'),
Expand Down

0 comments on commit c10aaa7

Please sign in to comment.