removed debug message

git-svn-id: https://vsmartcard.svn.sourceforge.net/svnroot/vsmartcard@642 96b47cad-a561-4643-ad3b-153ac7d7599c
This commit is contained in:
frankmorgner
2011-12-07 21:42:37 +00:00
parent 08eaf8ca4b
commit 911cd0b591

View File

@@ -251,7 +251,6 @@ class C_APDU(APDU):
def parse(self, apdu):
"Parse a full command APDU and assign the values to our object, overwriting whatever there was."
print apdu
apdu = map( lambda a: (isinstance(a, str) and (ord(a),) or (a,))[0], apdu)
apdu = apdu + [0] * max(4-len(apdu), 0)