Fixed calling an attribute on a string.

This commit is contained in:
Joshua Ashton 2024-11-26 16:05:16 -07:00
parent cef0076e1d
commit 2462cca02d

View file

@ -734,9 +734,9 @@ class firehose_client(metaclass=LogBase):
for lun in fpartitions:
for partition in fpartitions[lun]:
if self.cfg.MemoryName == "emmc":
self.error("\t" + partition.name)
self.error("\t" + partition)
else:
self.error(lun + ":\t" + partition.name)
self.error(lun + ":\t" + partition)
if bad:
return False
else: