diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-02-05 21:21:36 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-02-05 21:21:36 +0100 |
commit | d7eef2c28eae2e43e3ade4441810ecc0cdea6fd7 (patch) | |
tree | dd2e998df9934a78201d23209ed7fbb2329a2820 /module/plugins/Base.py | |
parent | updated documentation + diagrams (diff) | |
download | pyload-d7eef2c28eae2e43e3ade4441810ecc0cdea6fd7.tar.xz |
option for internal plugins
Diffstat (limited to 'module/plugins/Base.py')
-rw-r--r-- | module/plugins/Base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/module/plugins/Base.py b/module/plugins/Base.py index 34074095e..29ff3a723 100644 --- a/module/plugins/Base.py +++ b/module/plugins/Base.py @@ -39,6 +39,8 @@ class Base(object): __version__ = "0.1" #: Regexp pattern which will be matched for download/crypter plugins __pattern__ = r"" + #: Internal Hook plugin which is always loaded + __internal__ = False #: Config definition: list of (name, type, verbose_name, default_value) or #: (name, type, verbose_name, short_description, default_value) __config__ = list() |