summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/crypter/FilecryptCc.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/crypter/FilecryptCc.py')
-rw-r--r--pyload/plugins/crypter/FilecryptCc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugins/crypter/FilecryptCc.py b/pyload/plugins/crypter/FilecryptCc.py
index cb00da5e9..160253c06 100644
--- a/pyload/plugins/crypter/FilecryptCc.py
+++ b/pyload/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: