mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
IDAPython for IDA 8.3
This commit is contained in:
@@ -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_:
|
||||
|
||||
Reference in New Issue
Block a user