aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2022-02-12 18:20:49 +0100
committerHarald Welte <laforge@osmocom.org>2022-02-15 15:35:35 +0100
commitd53918c3e16a18663803f2a14aafc82859d63b14 (patch)
tree95aac1afbabbf8e9aee3b38d03847623b1bf920b
parent6ca2fa7a5d4842793217473cf6c04b2b7b344375 (diff)
filesystem: Fix CardMF.get_app_names()
This function was not used and doesn't work without this patch. Change-Id: Id3dad7d97fe29a25792d2f8f0e879666c1d9c136
-rw-r--r--pySim/filesystem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pySim/filesystem.py b/pySim/filesystem.py
index d52a16e..95f792a 100644
--- a/pySim/filesystem.py
+++ b/pySim/filesystem.py
@@ -384,7 +384,7 @@ class CardMF(CardDF):
def get_app_names(self):
"""Get list of completions (AID names)"""
- return [x.name for x in self.applications]
+ return list(self.applications.values())
def get_selectables(self, flags=[]) -> dict:
"""Return a dict of {'identifier': File} that is selectable from the current DF.