diff options
Diffstat (limited to 'module/plugins/accounts/CloudzillaTo.py')
-rw-r--r-- | module/plugins/accounts/CloudzillaTo.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/module/plugins/accounts/CloudzillaTo.py b/module/plugins/accounts/CloudzillaTo.py index 5716c8d94..2677a5b55 100644 --- a/module/plugins/accounts/CloudzillaTo.py +++ b/module/plugins/accounts/CloudzillaTo.py @@ -28,9 +28,10 @@ class CloudzillaTo(Account): def login(self, user, data, req): html = self.load("https://www.cloudzilla.to/", - post={'lusername': user, - 'lpassword': data['password'], - 'w' : "dologin"}, req=req) + post={'lusername': user, + 'lpassword': data['password'], + 'w' : "dologin"}, + req=req) if "ERROR" in html: self.wrong_password() |