summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/FilecryptCc.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-07-30 14:52:01 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-07-30 14:52:01 +0200
commit3b6e1b55a0ab527af98c901cf2d855359500b14e (patch)
tree1c710fbf4d0ca273e6972943b42a3e295ed635c6 /module/plugins/crypter/FilecryptCc.py
parentMerge pull request #1615 from zapp-brannigan/patch-3 (diff)
downloadpyload-3b6e1b55a0ab527af98c901cf2d855359500b14e.tar.xz
[AntiStandby] Fix max_mtime method
Diffstat (limited to 'module/plugins/crypter/FilecryptCc.py')
-rw-r--r--module/plugins/crypter/FilecryptCc.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/module/plugins/crypter/FilecryptCc.py b/module/plugins/crypter/FilecryptCc.py
index ff2620b53..62b6c9ee2 100644
--- a/module/plugins/crypter/FilecryptCc.py
+++ b/module/plugins/crypter/FilecryptCc.py
@@ -68,10 +68,7 @@ class FilecryptCc(Crypter):
self.log_info(_("Found %d mirrors") % len(mirror))
for i in mirror[1:]:
- try:
- self.site_with_links = self.site_with_links + self.load(i).decode("utf-8", "replace")
- except:
- self.site_with_links = self.site_with_links + self.load(i)
+ self.site_with_links = self.site_with_links + self.load(i)
def handle_password_protection(self):