summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-03-01 11:08:44 -0500
committerPeter LaFosse <peter@vector35.com>2021-03-02 07:50:56 -0500
commitf4b03ae8f994ad09cd67f980921cce7f1a88f245 (patch)
treecf6fd41eb6b0c1df072ba969995f7b16bf72ac12 /python
parentdc5798ff89c22c8c74fdf59f49a415d3a9569129 (diff)
PluginManager: Install dependencies before installation
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 3add086b..b24ba7b6 100644
--- a/python/pluginmanager.py
+++ b/python/pluginmanager.py
@@ -62,6 +62,7 @@ class RepoPlugin(object):
@installed.setter
def installed(self, state):
if state:
+ self.install_dependencies()
return core.BNPluginInstall(self.handle)
else:
return core.BNPluginUninstall(self.handle)