diff options
author | Stefano <l.stickell@yahoo.it> | 2013-10-11 18:10:51 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-10-11 18:10:51 +0200 |
commit | b0426c839a84f27de59cd419b4a86f1eaa83b0dc (patch) | |
tree | f12c17a6ad6adbdfd34f57b2e26ed6aa06d30434 | |
parent | NCryptIn: using ReCaptcha from CaptchaService (diff) | |
download | pyload-b0426c839a84f27de59cd419b4a86f1eaa83b0dc.tar.xz |
LofCc: using ReCaptcha from CaptchaService
-rw-r--r-- | module/plugins/crypter/LofCc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/crypter/LofCc.py b/module/plugins/crypter/LofCc.py index ec9cdaac6..5fee776c7 100644 --- a/module/plugins/crypter/LofCc.py +++ b/module/plugins/crypter/LofCc.py @@ -5,14 +5,14 @@ import re from os.path import join from module.plugins.Crypter import Crypter -from module.plugins.ReCaptcha import ReCaptcha +from module.plugins.internal.CaptchaService import ReCaptcha class LofCc(Crypter): __name__ = "LofCc" __type__ = "container" __pattern__ = r"http://lof.cc/(.*)" - __version__ = "0.1" + __version__ = "0.2" __description__ = """lof.cc Plugin""" __author_name__ = ("mkaay") __author_mail__ = ("mkaay@mkaay.de") |