addressing PR comments

This commit is contained in:
Michael Hunhoff
2020-08-31 15:15:19 -06:00
parent 863b7b58c5
commit e18eb5f463
5 changed files with 32 additions and 37 deletions

View File

@@ -20,7 +20,7 @@ class CapaExplorerPlugin(idaapi.plugin_t):
# Mandatory definitions
PLUGIN_NAME = "capa explorer"
PLUGIN_VERSION = "0.0.1"
PLUGIN_VERSION = "1.0.0"
PLUGIN_AUTHORS = ""
wanted_name = PLUGIN_NAME
@@ -61,6 +61,6 @@ class CapaExplorerPlugin(idaapi.plugin_t):
"""
called when IDA is running the plugin as a script
"""
self.form = CapaExplorerForm(self.PLUGIN_NAME, logger)
self.form = CapaExplorerForm(self.PLUGIN_NAME)
self.form.Show()
return True