From b623a2337033059fea8bc4c57a236c8b03025d53 Mon Sep 17 00:00:00 2001 From: "Gary E. Miller" Date: Sat, 13 Oct 2018 18:08:00 -0700 Subject: ubxtool: Fix another Python 3 crash. --- ubxtool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- cgit v1.2.1