From: Simon Glass Date: Tue, 23 Nov 2021 18:03:43 +0000 (-0700) Subject: binman: Correct init of entry in Entry class X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=c47383114f8cbced067e10035b5b907e87425dd3;p=u-boot.git binman: Correct init of entry in Entry class This should not have an underscore. Drop it so that derived classes can rely on it being set correctly. Signed-off-by: Simon Glass --- diff --git a/tools/binman/entry.py b/tools/binman/entry.py index 70222718ea..5e66aa4fa5 100644 --- a/tools/binman/entry.py +++ b/tools/binman/entry.py @@ -95,7 +95,7 @@ class Entry(object): self.pad_after = 0 self.offset_unset = False self.image_pos = None - self._expand_size = False + self.expand_size = False self.compress = 'none' self.missing = False self.external = False