aboutsummaryrefslogtreecommitdiff
path: root/tools/binman/etype/text.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/binman/etype/text.py')
-rw-r--r--tools/binman/etype/text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/etype/text.py b/tools/binman/etype/text.py
index 3577135..a69c2a4 100644
--- a/tools/binman/etype/text.py
+++ b/tools/binman/etype/text.py
@@ -57,7 +57,7 @@ class Entry_text(Entry):
by setting the size of the entry to something larger than the text.
"""
def __init__(self, section, etype, node):
- Entry.__init__(self, section, etype, node)
+ super().__init__(section, etype, node)
value = fdt_util.GetString(self._node, 'text')
if value:
value = tools.ToBytes(value)