vicc: temporarily drop python3 compatibility for relay
fixes https://github.com/frankmorgner/vsmartcard/issues/129
This commit is contained in:
@@ -83,7 +83,7 @@ class RelayOS(SmartcardOS):
|
|||||||
logging.error("Error getting ATR: %s", e.message)
|
logging.error("Error getting ATR: %s", e.message)
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
return b"".join([bytes(b) for b in atr])
|
return "".join([chr(b) for b in atr])
|
||||||
|
|
||||||
def powerUp(self):
|
def powerUp(self):
|
||||||
# When powerUp is called multiple times the session is valid (and the
|
# When powerUp is called multiple times the session is valid (and the
|
||||||
|
|||||||
Reference in New Issue
Block a user