projects
/
pyelftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
83ad8a2
)
construct_utils.py: add missing import (#291)
author
Andreas Ziegler
<andreas.ziegler@fau.de>
Fri, 6 Mar 2020 14:00:26 +0000
(15:00 +0100)
committer
GitHub
<noreply@github.com>
Fri, 6 Mar 2020 14:00:26 +0000
(06:00 -0800)
Add a forgotten import of SizeofError.
Fixes: #278
elftools/common/construct_utils.py
patch
|
blob
|
history
diff --git
a/elftools/common/construct_utils.py
b/elftools/common/construct_utils.py
index 36332497a306a79b084447bb6b98daddce910416..4b4a39205e9f96712cb66893d647fb0085e3c8de 100644
(file)
--- 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
)