summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/CloudzillaToFolder.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/crypter/CloudzillaToFolder.py')
-rw-r--r--module/plugins/crypter/CloudzillaToFolder.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/crypter/CloudzillaToFolder.py b/module/plugins/crypter/CloudzillaToFolder.py
index 75ad74791..d1d8a2106 100644
--- a/module/plugins/crypter/CloudzillaToFolder.py
+++ b/module/plugins/crypter/CloudzillaToFolder.py
@@ -28,11 +28,11 @@ class CloudzillaToFolder(SimpleCrypter):
def check_errors(self):
- m = re.search(self.PASSWORD_PATTERN, self.html)
+ m = re.search(self.PASSWORD_PATTERN, self.data)
if m is not None:
- self.html = self.load(self.pyfile.url, get={'key': self.get_password()})
+ self.data = self.load(self.pyfile.url, get={'key': self.get_password()})
- if re.search(self.PASSWORD_PATTERN, self.html):
+ if re.search(self.PASSWORD_PATTERN, self.data):
self.retry(msg="Wrong password")