Skip to content

Commit

Permalink
Fixed calling an attribute on a string.
Browse files Browse the repository at this point in the history
  • Loading branch information
quaxlyqueen committed Nov 26, 2024
1 parent cef0076 commit 2462cca
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 2462cca

Please sign in to comment.