summaryrefslogtreecommitdiff
path: root/test_maidenhead.py
diff options
context:
space:
mode:
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: