summaryrefslogtreecommitdiff
path: root/python/scriptingprovider.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2020-06-17 15:23:44 -0400
committerJordan Wiens <jordan@psifertex.com>2020-06-17 15:23:44 -0400
commitf9121c18673a58cb9b1820656f82e05b1ac4b7b8 (patch)
tree2572b6f529cc308f98e4c983409a61dd5c92e71f /python/scriptingprovider.py
parent4eae3900e12e9acc30ed682a0f058abfb3758fa1 (diff)
many spelling fixes
Diffstat (limited to 'python/scriptingprovider.py')
-rw-r--r--python/scriptingprovider.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/scriptingprovider.py b/python/scriptingprovider.py
index 8e2ddc32..d8f87ba8 100644
--- a/python/scriptingprovider.py
+++ b/python/scriptingprovider.py
@@ -536,7 +536,7 @@ class PythonScriptingInstance(ScriptingInstance):
def __init__(self, instance):
super(PythonScriptingInstance.InterpreterThread, self).__init__()
self.instance = instance
- # Note: "current_address" and "here" are interactive auto-variables (i.e. can be set by user and programatically)
+ # Note: "current_address" and "here" are interactive auto-variables (i.e. can be set by user and programmatically)
blacklisted_vars = {"current_view", "bv", "current_function", "current_basic_block", "current_selection", "current_llil", "current_mlil", "current_hlil"}
self.locals = BlacklistedDict(blacklisted_vars, {"__name__": "__console__", "__doc__": None, "binaryninja": sys.modules[__name__]})
self.interpreter = code.InteractiveConsole(self.locals)