Skip to content

Commit

Permalink
Merge pull request #604 from quaxlyqueen/patch
Browse files Browse the repository at this point in the history
Fixed calling an attribute on a string.
  • Loading branch information
bkerler authored Dec 31, 2024
2 parents bb26da0 + 2462cca commit ac60534
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions edlclient/Library/firehose_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -734,9 +734,9 @@ def handle_firehose(self, cmd, options):
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:
Expand Down

0 comments on commit ac60534

Please sign in to comment.