ignore a zero day and its delimiter, in numerical date format
This commit is contained in:
parent
d6f7cfcd20
commit
e84bf70347
@ -455,6 +455,9 @@ class DateDisplay(object):
|
||||
return str(date_val[2])
|
||||
else:
|
||||
value = self._tformat.replace('%m', str(date_val[1]))
|
||||
if date_val[0] == 0: # ignore the zero day and its delimiter
|
||||
i_day = value.find('%d')
|
||||
value = value.replace(value[i_day:i_day+3], '')
|
||||
value = value.replace('%d', str(date_val[0]))
|
||||
value = value.replace('%Y', str(abs(date_val[2])))
|
||||
return value.replace('-', '/')
|
||||
|
Loading…
Reference in New Issue
Block a user