Revert "Do not return the FCI information while selecting a file"

This reverts commit 8c1b33c439.
This commit is contained in:
Harald Welte 2016-10-27 14:40:02 +02:00
parent 4e824686f5
commit 9a1dcea7b3
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class SimCardCommands(object):
def select_file(self, dir_list):
rv = []
for i in dir_list:
data, sw = self._tp.send_apdu_checksw(self.cla_byte + "a4000C02" + i)
data, sw = self._tp.send_apdu_checksw(self.cla_byte + "a4000002" + i)
rv.append(data)
return rv