mirror of
https://github.com/bkerler/edl.git
synced 2025-04-05 11:39:51 -04:00
Fixed calling an attribute on a string.
This commit is contained in:
parent
cef0076e1d
commit
2462cca02d
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue