31 lines
820 B
Diff
31 lines
820 B
Diff
From 8479ba777ed9b2d026382f7b4115bfe63bcec908 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Tobias=20J=C3=A4ggi?= <tobias.jaeggi@netmodule.com>
|
|
Date: Thu, 23 Jan 2020 14:14:35 +0100
|
|
Subject: [PATCH] =?UTF-8?q?apply=20python3=20path=20to=20python2=20env=20t?=
|
|
=?UTF-8?q?o=20use=20pyserial=20in=20ubxtool=20BugzID:=2061081=20Signed-of?=
|
|
=?UTF-8?q?f-by:=20Tobias=20J=C3=A4ggi=20<tobias.jaeggi@netmodule.com>?=
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
---
|
|
ubxtool | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/ubxtool b/ubxtool
|
|
index c06612edb..5e8cb2927 100755
|
|
--- a/ubxtool
|
|
+++ b/ubxtool
|
|
@@ -43,6 +43,8 @@ import struct # for pack()
|
|
import sys
|
|
import time
|
|
|
|
+sys.path.append("/usr/lib/python3.7/site-packages/")
|
|
+
|
|
PROG_NAME = 'ubxtool'
|
|
|
|
try:
|
|
--
|
|
2.20.1
|
|
|