diff options
| author | 2015-06-08 10:09:56 +0200 | |
|---|---|---|
| committer | 2015-06-08 10:09:56 +0200 | |
| commit | 285c4bd667d303efb0818f71b2e26bc9038eeee5 (patch) | |
| tree | 072cf170707abceaf43c78c8b96942acc9081821 /module/plugins/hoster/CzshareCom.py | |
| parent | [SimpleHoster] Improve logging and file checking (diff) | |
| download | pyload-285c4bd667d303efb0818f71b2e26bc9038eeee5.tar.xz | |
Update plugins
Diffstat (limited to 'module/plugins/hoster/CzshareCom.py')
| -rw-r--r-- | module/plugins/hoster/CzshareCom.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/module/plugins/hoster/CzshareCom.py b/module/plugins/hoster/CzshareCom.py index 8f72f2148..befd964bf 100644 --- a/module/plugins/hoster/CzshareCom.py +++ b/module/plugins/hoster/CzshareCom.py @@ -12,7 +12,7 @@ from module.utils import parseFileSize  class CzshareCom(SimpleHoster):      __name__    = "CzshareCom"      __type__    = "hoster" -    __version__ = "0.99" +    __version__ = "1.00"      __pattern__ = r'http://(?:www\.)?(czshare|sdilej)\.(com|cz)/(\d+/|download\.php\?).+'      __config__  = [("use_premium", "bool", "Use premium account if available", True)] @@ -134,7 +134,7 @@ class CzshareCom(SimpleHoster):          self.wait() -    def checkFile(self, rules={}): +    def checkFile(self):          # check download          check = self.checkDownload({              "temp offline" : re.compile(r"^Soubor je do.*asn.* nedostupn.*$"), @@ -156,7 +156,7 @@ class CzshareCom(SimpleHoster):              self.invalidCaptcha()              self.retry() -        return super(CzshareCom, self).checkFile(rules) +        return super(CzshareCom, self).checkFile()  getInfo = create_getInfo(CzshareCom) | 
