Fix compatibility with Python 3: print() is a function

Change-Id: I5dd8e5daf420fc8667c5156bfacc8763d8895993
This commit is contained in:
Vadim Yanitskiy
2020-01-22 23:38:24 +07:00
parent fa1dc34152
commit 6727f0c02c
5 changed files with 51 additions and 51 deletions

View File

@@ -162,7 +162,7 @@ class SerialSimLink(LinkBase):
def _dbg_print(self, s):
if self._debug:
print s
print(s)
def _tx_byte(self, b):
self._sl.write(b)