laforge has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/pysim/+/37541?usp=email )


Change subject: saip-tool: Fix TAR display for implicit TAR
......................................................................

saip-tool: Fix TAR display for implicit TAR

Until Change-Id Ifba1048e3000829d54769b0420f5134e2f9b04e1 the TAR
output was working for implicit tar.  With said commit we fixed it
for explicit tar but broke implicit tar.

With this commit it works for both implicit and explicit TAR.

Change-Id: I76133b0e02996a138257f3fba5ceb0d2fc6fad80
---
M contrib/saip-tool.py
1 file changed, 17 insertions(+), 1 deletion(-)



  git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/41/37541/1

diff --git a/contrib/saip-tool.py b/contrib/saip-tool.py
index 8208602..d9d33c0 100755
--- a/contrib/saip-tool.py
+++ b/contrib/saip-tool.py
@@ -202,7 +202,8 @@
         adf = rfm.decoded.get('adfRFMAccess', None)
         if adf:
             print("\tADF AID: %s" % b2h(adf['adfAID']))
-        for tar in rfm.decoded['tarList']:
+        tar_list = rfm.decoded.get('tarList', [inst_aid[-3:]])
+        for tar in tar_list:
             print("\tTAR: %s" % b2h(tar))

 def do_extract_apps(pes:ProfileElementSequence, opts):

--
To view, visit https://gerrit.osmocom.org/c/pysim/+/37541?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: I76133b0e02996a138257f3fba5ceb0d2fc6fad80
Gerrit-Change-Number: 37541
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <lafo...@osmocom.org>
Gerrit-MessageType: newchange

Reply via email to