summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/captcha
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-03-26 18:15:41 +0100
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-03-26 18:15:41 +0100
commit181ab47c5f775b8b48569361da6b88a801784a30 (patch)
treef5f6d1d6b75b7f21b89b33733c3536e5ca80e087 /pyload/plugin/captcha
parentMerge branch 'stable' into 0.4.10 (diff)
downloadpyload-181ab47c5f775b8b48569361da6b88a801784a30.tar.xz
Cleanup
Diffstat (limited to 'pyload/plugin/captcha')
-rw-r--r--pyload/plugin/captcha/AdYouLike.py1
-rw-r--r--pyload/plugin/captcha/AdsCaptcha.py1
-rw-r--r--pyload/plugin/captcha/ReCaptcha.py1
-rw-r--r--pyload/plugin/captcha/SolveMedia.py1
4 files changed, 4 insertions, 0 deletions
diff --git a/pyload/plugin/captcha/AdYouLike.py b/pyload/plugin/captcha/AdYouLike.py
index 0ff1a799b..d656acb09 100644
--- a/pyload/plugin/captcha/AdYouLike.py
+++ b/pyload/plugin/captcha/AdYouLike.py
@@ -8,6 +8,7 @@ from pyload.utils import json_loads
class AdYouLike(Captcha):
__name__ = "AdYouLike"
+ __type__ = "captcha"
__version__ = "0.05"
__description__ = """AdYouLike captcha service plugin"""
diff --git a/pyload/plugin/captcha/AdsCaptcha.py b/pyload/plugin/captcha/AdsCaptcha.py
index 75852e36d..5b23247c0 100644
--- a/pyload/plugin/captcha/AdsCaptcha.py
+++ b/pyload/plugin/captcha/AdsCaptcha.py
@@ -9,6 +9,7 @@ from pyload.plugin.Captcha import Captcha
class AdsCaptcha(Captcha):
__name__ = "AdsCaptcha"
+ __type__ = "captcha"
__version__ = "0.08"
__description__ = """AdsCaptcha captcha service plugin"""
diff --git a/pyload/plugin/captcha/ReCaptcha.py b/pyload/plugin/captcha/ReCaptcha.py
index 295491bd8..62b82d1d5 100644
--- a/pyload/plugin/captcha/ReCaptcha.py
+++ b/pyload/plugin/captcha/ReCaptcha.py
@@ -12,6 +12,7 @@ from pyload.plugin.Captcha import Captcha
class ReCaptcha(Captcha):
__name__ = "ReCaptcha"
+ __type__ = "captcha"
__version__ = "0.14"
__description__ = """ReCaptcha captcha service plugin"""
diff --git a/pyload/plugin/captcha/SolveMedia.py b/pyload/plugin/captcha/SolveMedia.py
index af45101b4..7f421f490 100644
--- a/pyload/plugin/captcha/SolveMedia.py
+++ b/pyload/plugin/captcha/SolveMedia.py
@@ -7,6 +7,7 @@ from pyload.plugin.Captcha import Captcha
class SolveMedia(Captcha):
__name__ = "SolveMedia"
+ __type__ = "captcha"
__version__ = "0.12"
__description__ = """SolveMedia captcha service plugin"""