summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts/CloudzillaTo.py
diff options
context:
space:
mode:
authorGravatar Sahil Shekhawat <sahilshekhawat01@gmail.com> 2015-01-11 14:54:48 +0100
committerGravatar Sahil Shekhawat <sahilshekhawat01@gmail.com> 2015-01-11 14:54:48 +0100
commitd2b60b5ceb369814a0de41c8b8744b5c4ed81523 (patch)
tree6619e01fc0e5f281e4d28678ec565860a86784ec /module/plugins/accounts/CloudzillaTo.py
parentupdated nitroflare.com's plugin (diff)
parentCode improvements (diff)
downloadpyload-d2b60b5ceb369814a0de41c8b8744b5c4ed81523.tar.xz
Merged with the updated nitroflare
Diffstat (limited to 'module/plugins/accounts/CloudzillaTo.py')
-rw-r--r--module/plugins/accounts/CloudzillaTo.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/accounts/CloudzillaTo.py b/module/plugins/accounts/CloudzillaTo.py
index f0676f42f..d22d5e4b3 100644
--- a/module/plugins/accounts/CloudzillaTo.py
+++ b/module/plugins/accounts/CloudzillaTo.py
@@ -8,7 +8,7 @@ from module.plugins.Account import Account
class CloudzillaTo(Account):
__name__ = "CloudzillaTo"
__type__ = "account"
- __version__ = "0.01"
+ __version__ = "0.02"
__description__ = """Cloudzilla.to account plugin"""
__license__ = "GPLv3"
@@ -30,7 +30,8 @@ class CloudzillaTo(Account):
html = req.load("http://www.cloudzilla.to/",
post={'lusername': user,
'lpassword': data['password'],
- 'w' : "dologin"})
+ 'w' : "dologin"},
+ decode=True)
if "ERROR" in html:
self.wrongPassword()