From 9a1dcea7b3d427d9ed16a36b7fe8d15ef7002d61 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Thu, 27 Oct 2016 14:40:02 +0200 Subject: [PATCH] Revert "Do not return the FCI information while selecting a file" This reverts commit 8c1b33c439fef423c3536e9243035722c52aba4c. --- pySim/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pySim/commands.py b/pySim/commands.py index 721b3d48..cb72a119 100644 --- a/pySim/commands.py +++ b/pySim/commands.py @@ -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