diff options
Diffstat (limited to 'pyload/plugin/captcha/AdsCaptcha.py')
-rw-r--r-- | pyload/plugin/captcha/AdsCaptcha.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pyload/plugin/captcha/AdsCaptcha.py b/pyload/plugin/captcha/AdsCaptcha.py index f879151ff..5c01a422e 100644 --- a/pyload/plugin/captcha/AdsCaptcha.py +++ b/pyload/plugin/captcha/AdsCaptcha.py @@ -8,13 +8,13 @@ from pyload.plugin.Captcha import Captcha class AdsCaptcha(Captcha): - __name = "AdsCaptcha" - __type = "captcha" - __version = "0.06" + __name__ = "AdsCaptcha" + __type__ = "captcha" + __version__ = "0.06" - __description = """AdsCaptcha captcha service plugin""" - __license = "GPLv3" - __authors = [("pyLoad Team", "admin@pyload.org")] + __description__ = """AdsCaptcha captcha service plugin""" + __license__ = "GPLv3" + __authors__ = [("pyLoad Team", "admin@pyload.org")] CAPTCHAID_PATTERN = r'api\.adscaptcha\.com/Get\.aspx\?[^"\']*CaptchaId=(\d+)' |