aboutsummaryrefslogtreecommitdiffstats
path: root/pySim
diff options
context:
space:
mode:
authorSupreeth Herle <herlesupreeth@gmail.com>2020-04-20 14:48:55 +0200
committerSupreeth Herle <herlesupreeth@gmail.com>2020-04-27 12:29:00 +0200
commitdf33037e4212bcc6449bde12ae4b96058406fdae (patch)
tree65bc09af999bc9c30ea4ce43bf14123f7583c71e /pySim
parent8b72c27270c5582e92a3a3fd7e04b6bf7da9fe40 (diff)
Extend parsing and printing of Service table to ISIM
Diffstat (limited to 'pySim')
-rw-r--r--pySim/utils.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pySim/utils.py b/pySim/utils.py
index 56f9706..1980685 100644
--- a/pySim/utils.py
+++ b/pySim/utils.py
@@ -331,7 +331,10 @@ def dec_st(st, table="sim"):
Parses the EF S/U/IST and prints the list of available services in EF S/U/IST
"""
- if table == "usim":
+ if table == "isim":
+ from pySim.ts_31_103 import EF_IST_map
+ lookup_map = EF_IST_map
+ elif table == "usim":
from pySim.ts_31_102 import EF_UST_map
lookup_map = EF_UST_map
else: