fix Norwegian numeric-format date display

This commit is contained in:
Paul Franklin 2017-03-07 09:41:45 -08:00
parent c1c2c1557c
commit 968f378174

View File

@ -553,6 +553,8 @@ class DateDisplay:
return str(date_val[2])
else:
value = self._tformat.replace('%m', str(date_val[1]))
# some locales have %b for the month, e.g. ar_EG, is_IS, nb_NO
value = value.replace('%b', 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], '')