From 8e5c9cc61e0ce80abd273d408a0d5174cae8fbc3 Mon Sep 17 00:00:00 2001 From: Fred Wright Date: Mon, 26 Dec 2016 21:25:28 -0800 Subject: Fixes whitespace error in gpsprof. In general, tabs are a bad idea in Python, and Python is getting pickier about mixing tabs and spaces. This instance caused Python 3.6 to barf. TESTED: Now works with Python 3.6. --- gpsprof | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gpsprof') diff --git a/gpsprof b/gpsprof index 7638e0ff..73d064ef 100755 --- a/gpsprof +++ b/gpsprof @@ -135,7 +135,7 @@ class plotter(object): if self.session.fix.mode <= gps.MODE_NO_FIX: continue if self.sample(): - if countdown == await: + if countdown == await: sys.stderr.write("first fix in %.2fsec, gathering %d samples..." % (time.time() - basetime, await)) countdown -= 1 baton.end() -- cgit v1.2.1