update to support running in IDA w/ Python 3

This commit is contained in:
Michael Hunhoff
2021-02-19 14:28:20 -07:00
parent 4256316045
commit cc0aaa301f

View File

@@ -192,7 +192,7 @@ def ida_main():
functions = extractor.get_functions()
if function:
functions = filter(lambda f: f.start_ea == function, functions)
functions = tuple(filter(lambda f: f.start_ea == function, functions))
if len(functions) == 0:
print("0x%X not a function" % function)