Skip to content

Commit

Permalink
hotfix to improve plugin compatability with Python < 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gaasedelen committed Feb 10, 2022
1 parent 62f034d commit 5a8c621
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/patching/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
class PatchingCore(object):

PLUGIN_NAME = 'Patching'
PLUGIN_VERSION = '0.1.0'
PLUGIN_VERSION = '0.1.2'
PLUGIN_AUTHORS = 'Markus Gaasedelen'
PLUGIN_DATE = '2022'

Expand Down
2 changes: 1 addition & 1 deletion plugins/patching/ui/preview_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def _ui_init(self):
self._edit_timer.setSingleShot(True)
self._edit_timer.timeout.connect(self._edit_stopped)

if ida_name.get_nlist_size() > 20_000:
if ida_name.get_nlist_size() > 20000:
self._line_assembly.textEdited.connect(self._edit_started)
else:
self._line_assembly.textEdited.connect(self.controller.edit_assembly)
Expand Down

0 comments on commit 5a8c621

Please sign in to comment.