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

@@ -101,7 +101,7 @@ sc = SimCardCommands(sl)
sl.wait_for_card()
# Print IMSI
print sc.read_binary(['3f00', '7f20', '6f07'])
print(sc.read_binary(['3f00', '7f20', '6f07']))
# Run A3/A8
print sc.run_gsm('00112233445566778899aabbccddeeff')
print(sc.run_gsm('00112233445566778899aabbccddeeff'))