diff options
Diffstat (limited to 'module/plugins/hooks/CaptchaTrader.py')
-rw-r--r-- | module/plugins/hooks/CaptchaTrader.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hooks/CaptchaTrader.py b/module/plugins/hooks/CaptchaTrader.py index 62ac2c8cc..c41ed9f97 100644 --- a/module/plugins/hooks/CaptchaTrader.py +++ b/module/plugins/hooks/CaptchaTrader.py @@ -45,7 +45,7 @@ class CaptchaTraderException(Exception): class CaptchaTrader(Hook): __name__ = "CaptchaTrader" - __version__ = "0.12" + __version__ = "0.13" __description__ = """send captchas to captchatrader.com""" __config__ = [("activated", "bool", "Activated", True), ("username", "str", "Username", ""), @@ -100,7 +100,7 @@ class CaptchaTrader(Hook): ticket = response[0] result = response[1] - self.log.debug("CaptchaTrader result %s : %s" % (ticket,result)) + self.logDebug("result %s : %s" % (ticket,result)) return ticket, result @@ -129,7 +129,7 @@ class CaptchaTrader(Hook): start_new_thread(self.processCaptcha, (task,)) else: - self.log.info(_("Your CaptchaTrader Account has not enough credits")) + self.logInfo(_("Your CaptchaTrader Account has not enough credits")) def captchaCorrect(self, task): if task.data.has_key("ticket"): |