[PATCH 1/2] rtemstoolkit: Python 3 compatibility
Sebastian Huber
sebastian.huber at embedded-brains.de
Fri Jan 8 07:00:27 UTC 2016
---
rtemstoolkit/execute.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rtemstoolkit/execute.py b/rtemstoolkit/execute.py
index 4125182..0344e51 100755
--- a/rtemstoolkit/execute.py
+++ b/rtemstoolkit/execute.py
@@ -177,7 +177,7 @@ class execute(object):
break
#print '))))) %02x "%s"' % (ord(data), data)
for c in data:
- line += c
+ line += str(c)
if c == '\n':
count += 1
_output_line(line, exe, prefix, out, count)
--
1.8.4.5
More information about the devel
mailing list