diff options
| author | Simon Glass <[email protected]> | 2021-11-23 11:03:43 -0700 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2021-12-02 09:16:30 -0700 |
| commit | c47383114f8cbced067e10035b5b907e87425dd3 (patch) | |
| tree | 7dcd1f2dc7189514a05693d8783d88c32c5c1e3a | |
| parent | c475decf59a6460bbd706199d8157f2fd2c4f4fc (diff) | |
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 <[email protected]>
| -rw-r--r-- | tools/binman/entry.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/entry.py b/tools/binman/entry.py index 70222718ea9..5e66aa4fa54 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 |
