summaryrefslogtreecommitdiff
path: root/python/pluginmanager.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/pluginmanager.py')
-rw-r--r--python/pluginmanager.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/pluginmanager.py b/python/pluginmanager.py
index 1a3187af..15b98b55 100644
--- a/python/pluginmanager.py
+++ b/python/pluginmanager.py
@@ -235,6 +235,11 @@ class RepoPlugin(object):
return core.BNPluginIsUpdateAvailable(self.handle)
@property
+ def dependencies_being_installed(self):
+ """Boolean status indicating that the plugin's dependencies are currently being installed"""
+ return core.BNPluginAreDependenciesBeingInstalled(self.handle)
+
+ @property
def project_data(self):
"""Gets a json object of the project data field"""
return json.loads(core.BNPluginGetProjectData(self.handle))