Skip to content
Snippets Groups Projects
Commit 3ae62e07 authored by Destiny Kuehn's avatar Destiny Kuehn Committed by Maeva Pourpoint
Browse files

update utc_from_str to calculate second/microsecond

parent 7c61c253
No related branches found
No related tags found
1 merge request!33Fix to issue #61: Allow user to edit start/end times to the microsecond
......@@ -698,8 +698,10 @@ def utc_from_str(value):
year, jday = int(year), int(jday)
if rest:
hour, *minute = rest[0].split(':')
second = int(rest[1])
microsecond = int(rest[2])
else:
hour, minute = 0, 0
hour, minute, second, microsecond = 0, 0, 00, 000000
if hour:
hour = int(hour)
else:
......@@ -708,7 +710,7 @@ def utc_from_str(value):
minute = int(minute[0])
else:
minute = 0
return UTCDateTime(year=year, julday=jday, hour=hour, minute=minute)
return UTCDateTime(year=year, julday=jday, hour=hour, minute=minute, second=second, microsecond=microsecond)
def scan_ms(dir_name, status_message=print):
# Remove timing test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment