diff --git a/bin/smartpgp/commands.py b/bin/smartpgp/commands.py index 995c04a..511b418 100644 --- a/bin/smartpgp/commands.py +++ b/bin/smartpgp/commands.py @@ -112,6 +112,7 @@ def encode_len(data): def _raw_send_apdu(connection, text, apdu): print "%s" % text + apdu = [int(c) for c in apdu] #print ' '.join('{:02X}'.format(c) for c in apdu) (data, sw1, sw2) = connection.transmit(apdu) #print ' '.join('{:02X}'.format(c) for c in data)