summaryrefslogtreecommitdiff
path: root/test_maidenhead.py
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2017-07-01 14:53:28 -0700
committerGary E. Miller <gem@rellim.com>2017-07-01 14:53:28 -0700
commitf20a254843285b60288dca3c88d10cdaf006683f (patch)
tree49ed4119b1826410b107695913bb95c1b46ef4be /test_maidenhead.py
parent1fc6f973af260f20ededc87ef0a20e4c3e65b913 (diff)
downloadgpsd-f20a254843285b60288dca3c88d10cdaf006683f.tar.gz
test_maidenhead.py: pep8 fixes
Diffstat (limited to 'test_maidenhead.py')
-rwxr-xr-xtest_maidenhead.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test_maidenhead.py b/test_maidenhead.py
index 707a05fb..65514210 100755
--- a/test_maidenhead.py
+++ b/test_maidenhead.py
@@ -22,7 +22,8 @@ for (lat, lon, maidenhead, location) in [
]:
converted = gps.clienthelpers.maidenhead(lat, lon)
if converted != maidenhead:
- sys.stderr.write("maidenhead test: from %s %s (%s) expected %s got %s\n" \
+ sys.stderr.write(
+ "maidenhead test: from %s %s (%s) expected %s got %s\n"
% (lat, lon, location, maidenhead, converted))
errors += 1
else: