From 7094b0fbbbf49a2339108edd7dc0af52841834e7 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 30 Oct 2013 23:11:40 -0400 Subject: Revert "Separate ntpd support from chrony support, step 1." We'll have to sneak up on this change more slowly. --- gpscap.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gpscap.py') diff --git a/gpscap.py b/gpscap.py index 423cea17..b00f46c7 100644 --- a/gpscap.py +++ b/gpscap.py @@ -139,13 +139,13 @@ class GPSDictionary(ConfigParser.RawConfigParser): nmea = self.get(dev, "nmea") ofp.write("%s\n" % nmea) if self.has_option(dev, "pps") and self.get(dev, "pps") == "True": - pps_accuracy = time_offset = "" + pps_accuracy = ntp_offset = "" if self.has_option(dev, "pps_accuracy"): pps_accuracy = self.get(dev, "pps_accuracy") - if self.has_option(dev, "time_offset"): - time_offset = self.get(dev, "time_offset") - if pps_accuracy and time_offset: - ofp.write("%s
%s\n" % (pps_accuracy, time_offset)) + if self.has_option(dev, "ntp_offset"): + ntp_offset = self.get(dev, "ntp_offset") + if pps_accuracy and ntp_offset: + ofp.write("%s
%s\n" % (pps_accuracy, ntp_offset)) else: ofp.write("?
\n") else: -- cgit v1.2.1