Skip to content

Commit 5a8c621

Browse files
committed
hotfix to improve plugin compatability with Python < 3.6
1 parent 62f034d commit 5a8c621

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/patching/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
class PatchingCore(object):
3838

3939
PLUGIN_NAME = 'Patching'
40-
PLUGIN_VERSION = '0.1.0'
40+
PLUGIN_VERSION = '0.1.2'
4141
PLUGIN_AUTHORS = 'Markus Gaasedelen'
4242
PLUGIN_DATE = '2022'
4343

plugins/patching/ui/preview_ui.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def _ui_init(self):
9191
self._edit_timer.setSingleShot(True)
9292
self._edit_timer.timeout.connect(self._edit_stopped)
9393

94-
if ida_name.get_nlist_size() > 20_000:
94+
if ida_name.get_nlist_size() > 20000:
9595
self._line_assembly.textEdited.connect(self._edit_started)
9696
else:
9797
self._line_assembly.textEdited.connect(self.controller.edit_assembly)

0 commit comments

Comments
 (0)