> * Python 3 issue please manually modify `finger_plugin.py` at line 177:
# funcs = map(idaapi.getn_func, ctx.chooser_selection) # old
funcs = list(idaapi.getn_func, ctx.chooser_selection) # new
Then it should be another error like this:
funcs = list(idaapi.getn_func, ctx.chooser_selection) TypeError: list expected at most 1 argument, got 2
Originally posted by @shidalao in #1 (comment)
IDA version: 7.5
Python version: 3.8