We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b9426d commit f46b724Copy full SHA for f46b724
pyexcel_xls/xlsw.py
@@ -56,7 +56,7 @@ def write_row(self, array):
56
elif isinstance(value, datetime.timedelta):
57
value = value.days + value.seconds / 86_400
58
style = XFStyle()
59
- style.num_format_str = DEFAULT_LONGTIME_FORMAT
+ style.num_format_str = DEFAULT_LONGTIME_FORMAT
60
elif isinstance(value, datetime.date):
61
tmp_array = [value.year, value.month, value.day]
62
value = xlrd.xldate.xldate_from_date_tuple(tmp_array, 0)
0 commit comments