diff options
| author | 2014-11-22 20:23:19 +0100 | |
|---|---|---|
| committer | 2014-11-22 20:23:19 +0100 | |
| commit | d094edc31d18b67ffff8e38610ee091df2e61322 (patch) | |
| tree | 4cf0a3a1b8a02cd25e0485eb52db7c52f0f2b87a /module/plugins/crypter | |
| parent | [XFSAccount] Fix trafficleft (diff) | |
| download | pyload-d094edc31d18b67ffff8e38610ee091df2e61322.tar.xz | |
[FilecryptCc] Tiny fixup
Diffstat (limited to 'module/plugins/crypter')
| -rw-r--r-- | module/plugins/crypter/FilecryptCc.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/crypter/FilecryptCc.py b/module/plugins/crypter/FilecryptCc.py index db4a8c4ab..dedd284b3 100644 --- a/module/plugins/crypter/FilecryptCc.py +++ b/module/plugins/crypter/FilecryptCc.py @@ -12,7 +12,7 @@ from module.plugins.Crypter import Crypter  class FilecryptCc(Crypter):      __name__    = "FilecryptCc"      __type__    = "crypter" -    __version__ = "0.04" +    __version__ = "0.05"      __pattern__ = r'https?://(?:www\.)?filecrypt\.cc/Container/\w+' @@ -58,7 +58,7 @@ class FilecryptCc(Crypter):          mirror = re.findall(self.MIRROR_PAGE_PATTERN, self.siteWithLinks) -        self.logInfo(_("Found %d mirrors") % len(m)) +        self.logInfo(_("Found %d mirrors") % len(mirror))          for i in mirror[1:]:              self.siteWithLinks = self.siteWithLinks + self.load(i, cookies=True).decode("utf-8", "replace")  | 
