Ticket #11783: humanize_ordinal_TypeError.diff
File humanize_ordinal_TypeError.diff, 562 bytes (added by , 15 years ago) |
---|
-
django/contrib/humanize/templatetags/humanize.py
14 14 """ 15 15 try: 16 16 value = int(value) 17 except ValueError:17 except (TypeError, ValueError): 18 18 return value 19 19 t = (_('th'), _('st'), _('nd'), _('rd'), _('th'), _('th'), _('th'), _('th'), _('th'), _('th')) 20 20 if value % 100 in (11, 12, 13): # special case