diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-03 22:38:59 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-03 22:38:59 +0100 |
commit | f3441978ca039c38924bd3b1d0019ca92f8a12d0 (patch) | |
tree | 15243dc6b390a8cef093d8042a34fc746bc706fe /module/plugins/crypter | |
parent | [FilerNet] Fix https://github.com/pyload/pyload/issues/897 (diff) | |
download | pyload-f3441978ca039c38924bd3b1d0019ca92f8a12d0.tar.xz |
[NetloadIn] Syntax fixup
Diffstat (limited to 'module/plugins/crypter')
-rw-r--r-- | module/plugins/crypter/FilecryptCc.py | 2 |
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: |