From e8b815db20d4a017ba96342756c7863efaf7af34 Mon Sep 17 00:00:00 2001 From: Andreas Ziegler Date: Fri, 6 Mar 2020 15:00:26 +0100 Subject: [PATCH] construct_utils.py: add missing import (#291) Add a forgotten import of SizeofError. Fixes: #278 --- elftools/common/construct_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elftools/common/construct_utils.py b/elftools/common/construct_utils.py index 3633249..4b4a392 100644 --- a/elftools/common/construct_utils.py +++ b/elftools/common/construct_utils.py @@ -8,7 +8,7 @@ #------------------------------------------------------------------------------- from ..construct import ( Subconstruct, ConstructError, ArrayError, Adapter, Field, RepeatUntil, - Rename + Rename, SizeofError ) -- 2.30.2