Convert all helper_ properties to get_ methods.

This commit is contained in:
Mike Auty
2018-03-09 00:47:00 +00:00
parent 6d618903d5
commit bc8429a2b0
9 changed files with 133 additions and 133 deletions
+2 -2
View File
@@ -22,12 +22,12 @@ class Modules(plugins.PluginInterface):
for mod in self.list_modules():
try:
BaseDllName = mod.BaseDllName.helper_string
BaseDllName = mod.BaseDllName.get_string()
except exceptions.InvalidAddressException:
BaseDllName = ""
try:
FullDllName = mod.FullDllName.helper_string
FullDllName = mod.FullDllName.get_string()
except exceptions.InvalidAddressException:
FullDllName = ""