Skip to content
Snippets Groups Projects
Commit 705892c6 authored by Brian Moe's avatar Brian Moe
Browse files

Fix issue #739. GRB event times are wrong.

parent d39607e2
No related branches found
No related tags found
No related merge requests found
......@@ -66,5 +66,5 @@ def isoToGps(t):
fracSec = float('0.' + sec_substr)
else:
fracSec = 0
posixTime = mktime(ISOTime.utctimetuple()) + fracSec
posixTime = calendar.timegm(ISOTime.utctimetuple()) + fracSec
return int(round(posixToGpsTime(posixTime)))
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