Fix compatibility with Python 3: print() is a function
Change-Id: I5dd8e5daf420fc8667c5156bfacc8763d8895993
This commit is contained in:
@@ -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'))
|
||||
|
||||
Reference in New Issue
Block a user