summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2018-10-13 18:08:00 -0700
committerGary E. Miller <gem@rellim.com>2018-10-13 18:08:00 -0700
commitb623a2337033059fea8bc4c57a236c8b03025d53 (patch)
tree4a44ecf9a7eeef2b49e86da565bd535fee967e13
parent439bab8bee57f937f09dab78fe31e2f3e8b2a1e8 (diff)
downloadgpsd-b623a2337033059fea8bc4c57a236c8b03025d53.tar.gz
ubxtool: Fix another Python 3 crash.
-rwxr-xr-xubxtool2
1 files changed, 1 insertions, 1 deletions
diff --git a/ubxtool b/ubxtool
index 4e4a684f..16990482 100755
--- a/ubxtool
+++ b/ubxtool
@@ -1531,7 +1531,7 @@ class ubx(object):
if VERB_QUIET < opts['verbosity']:
sys.stdout.write("sent:\n")
if VERB_INFO < opts['verbosity']:
- sys.stdout.write(binascii.hexlify(m_all))
+ sys.stdout.write(gps.polystr(binascii.hexlify(m_all)))
sys.stdout.write("\n")
self.decode_msg(m_all)
sys.stdout.flush()