diff options
Diffstat (limited to 'module/plugins/hooks')
| -rw-r--r-- | module/plugins/hooks/CaptchaBrotherhood.py | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/module/plugins/hooks/CaptchaBrotherhood.py b/module/plugins/hooks/CaptchaBrotherhood.py index b6e38d8bb..6d4127871 100644 --- a/module/plugins/hooks/CaptchaBrotherhood.py +++ b/module/plugins/hooks/CaptchaBrotherhood.py @@ -94,10 +94,10 @@ class CaptchaBrotherhood(Hook):          req = getRequest()          url = "%ssendNewCaptcha.aspx?%s" % (self.API_URL, -                                            urlencode({"username": self.getConfig("username"), -                                                       "password": self.getConfig("passkey"), -                                                       "captchaSource": "pyLoad", -                                                       "timeout": "80"})) +                                            urlencode({'username'     : self.getConfig("username"), +                                                       'password'     : self.getConfig("passkey"), +                                                       'captchaSource': "pyLoad", +                                                       'timeout'      : "80"}))          req.c.setopt(pycurl.URL, url)          req.c.setopt(pycurl.POST, 1) | 
