summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-03 22:38:59 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-03 22:38:59 +0100
commitf3441978ca039c38924bd3b1d0019ca92f8a12d0 (patch)
tree15243dc6b390a8cef093d8042a34fc746bc706fe /module/plugins/crypter
parent[FilerNet] Fix https://github.com/pyload/pyload/issues/897 (diff)
downloadpyload-f3441978ca039c38924bd3b1d0019ca92f8a12d0.tar.xz
[NetloadIn] Syntax fixup
Diffstat (limited to 'module/plugins/crypter')
-rw-r--r--module/plugins/crypter/FilecryptCc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/crypter/FilecryptCc.py b/module/plugins/crypter/FilecryptCc.py
index dedd284b3..fb53e616b 100644
--- a/module/plugins/crypter/FilecryptCc.py
+++ b/module/plugins/crypter/FilecryptCc.py
@@ -121,7 +121,7 @@ class FilecryptCc(Crypter):
vjk = re.findall('<input type="hidden" name="jk" value="function f\(\){ return \'(.*)\';}">', self.siteWithLinks)
vcrypted = re.findall('<input type="hidden" name="crypted" value="(.*)">', self.siteWithLinks)
- for i in range(0, len(vcrypted)):
+ for i in xrange(len(vcrypted)):
self.links.extend(self._getLinks(vcrypted[i], vjk[i]))
except Exception, e: