Commit a709e0e3 by devttys0

Fixed python3 bug in extractor.py

parent 2491d80b
......@@ -17,7 +17,7 @@ from binwalk.core.common import file_size, file_md5, unique_file_name, BlockFile
class ExtractDetails(object):
def __init__(self, **kwargs):
for (k, v) in kwargs.iteritems():
for (k, v) in iterator(kwargs):
setattr(self, k, v)
class ExtractInfo(object):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment