diff options
| author | 2014-07-14 02:23:37 +0200 | |
|---|---|---|
| committer | 2014-07-15 16:13:41 +0200 | |
| commit | 48c0c42fd6faffc56432d5f037cd575979f180cc (patch) | |
| tree | b8a57137e10e201f77328dca45e2951ece123e53 /module/plugins/internal/MultiHoster.py | |
| parent | [l18n] Improved few source strings (diff) | |
| download | pyload-48c0c42fd6faffc56432d5f037cd575979f180cc.tar.xz | |
Removed all @author flags + key attributes cleanup for internal & hooks plugins
Diffstat (limited to 'module/plugins/internal/MultiHoster.py')
| -rw-r--r-- | module/plugins/internal/MultiHoster.py | 10 | 
1 files changed, 6 insertions, 4 deletions
| diff --git a/module/plugins/internal/MultiHoster.py b/module/plugins/internal/MultiHoster.py index 97f3a5996..0dea76109 100644 --- a/module/plugins/internal/MultiHoster.py +++ b/module/plugins/internal/MultiHoster.py @@ -7,12 +7,13 @@ from module.plugins.Hook import Hook  class MultiHoster(Hook): -    """ -    Generic MultiHoster plugin -    """ - +    __name__ = "AbtractExtractor"      __version__ = "0.19" +    __description__ = """Generic MultiHoster plugin""" +    __author_name__ = "pyLoad Team" +    __author_mail__ = "admin@pyload.org" +      replacements = [("2shared.com", "twoshared.com"), ("4shared.com", "fourshared.com"), ("cloudnator.com", "shragle.com"),                      ("ifile.it", "filecloud.io"), ("easy-share.com", "crocko.com"), ("freakshare.net", "freakshare.com"),                      ("hellshare.com", "hellshare.cz"), ("share-rapid.cz", "sharerapid.com"), ("sharerapid.cz", "sharerapid.com"), @@ -20,6 +21,7 @@ class MultiHoster(Hook):      ignored = []      interval = 24 * 60 * 60  #: reload hosters daily +      def setup(self):          self.hosters = []          self.supported = [] | 
