missed a spot in previous

This commit is contained in:
Ad Schellevis 2018-11-29 15:59:26 +01:00
parent 508e892880
commit 336f2e78c5

View File

@ -41,7 +41,7 @@ def convert_timestamp(val):
datepart, timepart = val.split(b" ")
else:
datepart = val
timepart = "0:0:0,0"
timepart = b"0:0:0,0"
year, month, day = list(map(int, datepart.split(b"-")))
timepart_full = timepart.split(b".")
hours, minutes, seconds = list(map(int, timepart_full[0].split(b":")))