mirror of
https://gitea.osmocom.org/sim-card/pysim.git
synced 2026-03-30 18:44:10 +03:00
filesystem: use correct AID for applications found by probing
When printing applications found by probing for a specific AID, then the wrong variable is used to print the AID. Change-Id: I3d5ec28e46fe00c0d793a1d9ef0a0e0900649a4d
This commit is contained in:
@@ -1115,7 +1115,7 @@ class RuntimeState(object):
|
|||||||
for f in set(apps_profile) - set(apps_taken):
|
for f in set(apps_profile) - set(apps_taken):
|
||||||
data, sw = self.card.select_adf_by_aid(f.aid)
|
data, sw = self.card.select_adf_by_aid(f.aid)
|
||||||
if sw == "9000":
|
if sw == "9000":
|
||||||
print(" %s: %s" % (f.name, a))
|
print(" %s: %s" % (f.name, f.aid))
|
||||||
apps_taken.append(f)
|
apps_taken.append(f)
|
||||||
|
|
||||||
return apps_taken
|
return apps_taken
|
||||||
|
|||||||
Reference in New Issue
Block a user