pySim.esim.saip.FsNodeADF: Fix __str__ method

It's quite common for a FsNodeADF to not have a df_name, so we need
to guard against that during stringification to avoid an exception.

Change-Id: I919d7c46575e0ebcdf3b979347a5cdd1a9feb294
This commit is contained in:
Harald Welte
2025-06-16 11:59:19 +02:00
committed by laforge
parent 4ee99c18cd
commit 947154639c

View File

@@ -2040,7 +2040,8 @@ class FsNodeADF(FsNodeDF):
super().__init__(fid, parent, file, name) super().__init__(fid, parent, file, name)
def __str__(self): def __str__(self):
return '%s(%s)' % (self.__class__.__name__, b2h(self.df_name)) # self.df_name is usually None for an ADF like ADF.USIM or ADF.ISIM so we need to guard against it
return '%s(%s)' % (self.__class__.__name__, b2h(self.df_name) if self.df_name else None)
class FsNodeMF(FsNodeDF): class FsNodeMF(FsNodeDF):
"""The MF (Master File) in the filesystem hierarchy.""" """The MF (Master File) in the filesystem hierarchy."""