From 116dc31f9905b1d003c9530dedd28d70d99c338c Mon Sep 17 00:00:00 2001 From: Josh F Date: Mon, 8 Aug 2022 17:02:55 -0400 Subject: Add call to _init_plugins() to RepositoryManager.__init__ --- python/pluginmanager.py | 1 + 1 file changed, 1 insertion(+) (limited to 'python/pluginmanager.py') 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): -- cgit v1.3.1