aboutsummaryrefslogtreecommitdiff
path: root/tools/binman/etype/vblock.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/binman/etype/vblock.py')
-rw-r--r--tools/binman/etype/vblock.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/etype/vblock.py b/tools/binman/etype/vblock.py
index 5753de7..f734fba 100644
--- a/tools/binman/etype/vblock.py
+++ b/tools/binman/etype/vblock.py
@@ -36,7 +36,7 @@ class Entry_vblock(Entry):
and kernel are genuine.
"""
def __init__(self, section, etype, node):
- Entry.__init__(self, section, etype, node)
+ super().__init__(section, etype, node)
self.content = fdt_util.GetPhandleList(self._node, 'content')
if not self.content:
self.Raise("Vblock must have a 'content' property")