From 543764154461a6a8dd5349504611d235f821f55d Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 5 Jan 2009 06:04:13 +0000 Subject: Temporarily give up on computing UTC time from the O timestamp in Python. It's kicking up a range error and only the test code uses it anyway. --- gps.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gps.py') diff --git a/gps.py b/gps.py index be2bbbd5..c9027dc9 100755 --- a/gps.py +++ b/gps.py @@ -308,7 +308,8 @@ class gps(gpsdata): return cnv(fields[i]) self.utc = fields[1] self.fix.time = default(1) - self.utc = isotime(self.fix.time) + #if not isnan(self.fix.time): + # self.utc = isotime(self.fix.time) self.fix.ept = default(2) self.fix.latitude = default(3) self.fix.longitude = default(4) -- cgit v1.2.1