IDAPython for IDA 8.3

This commit is contained in:
Arnaud Diederen
2023-06-12 10:39:14 +02:00
parent c99b9db781
commit e6841a95a3
97 changed files with 3909 additions and 1536 deletions
+1 -2
View File
@@ -1,7 +1,6 @@
from __future__ import print_function
import os
import six
from argparse import ArgumentParser
@@ -23,7 +22,7 @@ if os.path.isfile(args.patches):
all_lines = []
for l in lines:
for patch_kind, patch_data in six.iteritems(patches):
for patch_kind, patch_data in patches.items():
if patch_kind == "repl_line":
for from_, to in patch_data:
if l == from_: