summaryrefslogtreecommitdiffstats
path: root/module/plugins/addons/CaptchaTrader.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/addons/CaptchaTrader.py')
-rw-r--r--module/plugins/addons/CaptchaTrader.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/addons/CaptchaTrader.py b/module/plugins/addons/CaptchaTrader.py
index b3374ec1d..889fa38ef 100644
--- a/module/plugins/addons/CaptchaTrader.py
+++ b/module/plugins/addons/CaptchaTrader.py
@@ -46,7 +46,7 @@ class CaptchaTraderException(Exception):
class CaptchaTrader(Addon):
__name__ = "CaptchaTrader"
- __version__ = "0.13"
+ __version__ = "0.14"
__description__ = """send captchas to captchatrader.com"""
__config__ = [("activated", "bool", "Activated", True),
("username", "str", "Username", ""),
@@ -55,9 +55,9 @@ class CaptchaTrader(Addon):
__author_name__ = ("RaNaN")
__author_mail__ = ("RaNaN@pyload.org")
- SUBMIT_URL = "http://captchatrader.com/api/submit"
- RESPOND_URL = "http://captchatrader.com/api/respond"
- GETCREDITS_URL = "http://captchatrader.com/api/get_credits/username:%(user)s/password:%(password)s/"
+ SUBMIT_URL = "http://api.captchatrader.com/submit"
+ RESPOND_URL = "http://api.captchatrader.com/respond"
+ GETCREDITS_URL = "http://api.captchatrader.com/get_credits/username:%(user)s/password:%(password)s/"
def setup(self):
self.info = {}