Add missing 'sys' import to IDAPro import/export scripts

This commit is contained in:
Jeremy O'Brien 2019-04-18 08:34:27 -04:00
parent 4ce178c419
commit e0fabe4b72
5 changed files with 5 additions and 0 deletions

View file

@ -6,6 +6,7 @@ Loader and plugin for IDA to import a XML PROGRAM file to a database.
"""
import idaapi
import sys
import time
from xml.etree import cElementTree

View file

@ -9,6 +9,7 @@ import idaapi
import idautils
import idc
import datetime
import sys
import time

View file

@ -13,6 +13,7 @@ import ida_kernwin
import ida_pro
import idaxml
import idc
import sys
"""

View file

@ -12,6 +12,7 @@ import ida_idaapi
import ida_kernwin
import idaxml
import idc
import sys
class XmlExporterPlugin(ida_idaapi.plugin_t):

View file

@ -33,6 +33,7 @@ import idautils
import idc
import datetime
import os
import sys
import time
from xml.etree import cElementTree