From 2462cca02d4856c09067cc02dfe97cdcd6f3f62d Mon Sep 17 00:00:00 2001 From: Joshua Ashton Date: Tue, 26 Nov 2024 16:05:16 -0700 Subject: [PATCH] Fixed calling an attribute on a string. --- edlclient/Library/firehose_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/edlclient/Library/firehose_client.py b/edlclient/Library/firehose_client.py index dab84b0..24de6db 100644 --- a/edlclient/Library/firehose_client.py +++ b/edlclient/Library/firehose_client.py @@ -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: