summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJosh F <josh@vector35.com>2022-08-08 17:02:55 -0400
committerJosh F <josh@vector35.com>2022-08-08 17:02:55 -0400
commit116dc31f9905b1d003c9530dedd28d70d99c338c (patch)
tree71ae067797e62dbc12684cdb2b76b6f8a171b5f1 /python
parentf28fb80b7b49226006bbb1696c3c2bec07df891e (diff)
Add call to _init_plugins() to RepositoryManager.__init__
Diffstat (limited to 'python')
-rw-r--r--python/pluginmanager.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/python/pluginmanager.py b/python/pluginmanager.py
index 4151bfd6..042fbc40 100644
--- a/python/pluginmanager.py
+++ b/python/pluginmanager.py
@@ -313,6 +313,7 @@ class RepositoryManager:
the plugins that are installed/uninstalled enabled/disabled
"""
def __init__(self, handle=None):
+ binaryninja._init_plugins()
self.handle = core.BNGetRepositoryManager()
def __getitem__(self, repo_path):