summaryrefslogtreecommitdiff
path: root/python/pluginmanager.py
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2018-06-20 16:03:27 -0400
committerBrian Potchik <brian@vector35.com>2018-06-20 16:03:27 -0400
commit811544620f903b137aeb7660183ca9d6bb0d7590 (patch)
treecf3ddb0b1ff5a962bd8993724913ab764bc52022 /python/pluginmanager.py
parentdcfc1ea5303cfb5963778ef760fd3e6b2f6252f8 (diff)
Add DownloadProvider Support.
Diffstat (limited to 'python/pluginmanager.py')
-rw-r--r--python/pluginmanager.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/pluginmanager.py b/python/pluginmanager.py
index 2f293577..0cc43aca 100644
--- a/python/pluginmanager.py
+++ b/python/pluginmanager.py
@@ -32,6 +32,7 @@ class RepoPlugin(object):
created by parsing the plugins.json in a plugin repository.
"""
def __init__(self, handle):
+ raise Exception("RepoPlugin temporarily disabled!")
self.handle = core.handle_of_type(handle, core.BNRepoPlugin)
def __del__(self):
@@ -136,6 +137,7 @@ class Repository(object):
``Repository`` is a read-only class. Use RepositoryManager to Enable/Disable/Install/Uninstall plugins.
"""
def __init__(self, handle):
+ raise Exception("Repository temporarily disabled!")
self.handle = core.handle_of_type(handle, core.BNRepository)
def __del__(self):
@@ -199,6 +201,7 @@ class RepositoryManager(object):
the plugins that are installed/unstalled enabled/disabled
"""
def __init__(self, handle=None):
+ raise Exception("RepositoryManager temporarily disabled!")
self.handle = core.BNGetRepositoryManager()
def __getitem__(self, repo_path):