From 911cd0b5910e0a1c05ac29c1c0a5f0e036625829 Mon Sep 17 00:00:00 2001 From: frankmorgner Date: Wed, 7 Dec 2011 21:42:37 +0000 Subject: [PATCH] removed debug message git-svn-id: https://vsmartcard.svn.sourceforge.net/svnroot/vsmartcard@642 96b47cad-a561-4643-ad3b-153ac7d7599c --- virtualsmartcard/src/vpicc/virtualsmartcard/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/virtualsmartcard/src/vpicc/virtualsmartcard/utils.py b/virtualsmartcard/src/vpicc/virtualsmartcard/utils.py index b66c79b..c5c6ad0 100644 --- a/virtualsmartcard/src/vpicc/virtualsmartcard/utils.py +++ b/virtualsmartcard/src/vpicc/virtualsmartcard/utils.py @@ -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)