Skip to content
Snippets Groups Projects
Commit 7ae376f0 authored by Eddie McWhirter's avatar Eddie McWhirter
Browse files

Add a colon between minutes and seconds.

parent 67a3ea16
No related branches found
No related tags found
No related merge requests found
......@@ -144,8 +144,9 @@ class PCDCPFactory(TimeseriesFactory):
endHour = str(int(ending/60.0))
endMinute = str(int(ending%60.0))
start = year + yearday + "T" + startHour + ":" + startMinute + "00.0"
end = year + yearday + "T" + endHour + ":" + endMinute + "00.0"
start = year + yearday + "T" + startHour + ":" + \
startMinute + ":" + "00.0"
end = year + yearday + "T" + endHour + ":" + endMinute + ":" + "00.0"
starttime = obspy.core.UTCDateTime(start)
endtime = obspy.core.UTCDateTime(end)
......
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