diff options
| author | 2014-07-15 16:27:44 +0200 | |
|---|---|---|
| committer | 2014-07-15 16:27:44 +0200 | |
| commit | 8e47b0de30a25d0fd5dfb518bfe4e1e7beff93fd (patch) | |
| tree | 518c204aa8edbc8b0d33fe1aaa614e539438fae9 /module/plugins/crypter/LinkdecrypterCom.py | |
| parent | Prefer single quote for dict key name (diff) | |
| download | pyload-8e47b0de30a25d0fd5dfb518bfe4e1e7beff93fd.tar.xz | |
Key attributes cleanup for account, container and crypter plugins
Diffstat (limited to 'module/plugins/crypter/LinkdecrypterCom.py')
| -rw-r--r-- | module/plugins/crypter/LinkdecrypterCom.py | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/module/plugins/crypter/LinkdecrypterCom.py b/module/plugins/crypter/LinkdecrypterCom.py index 1ec396962..96fe11951 100644 --- a/module/plugins/crypter/LinkdecrypterCom.py +++ b/module/plugins/crypter/LinkdecrypterCom.py @@ -21,8 +21,11 @@ from module.plugins.Crypter import Crypter  class LinkdecrypterCom(Crypter):      __name__ = "LinkdecrypterCom" -    __type__ = "crypter"      __version__ = "0.27" +    __type__ = "crypter" + +    __pattern__ = None +      __description__ = """Linkdecrypter.com"""      __author_name__ = ("zoidberg", "flowlee")      __author_mail__ = ("zoidberg@mujmail.cz", "") @@ -32,6 +35,7 @@ class LinkdecrypterCom(Crypter):      CAPTCHA_PATTERN = r'<img class="captcha" src="(.+?)"(.*?)>'      REDIR_PATTERN = r'<i>(Click <a href="./">here</a> if your browser does not redirect you).</i>' +      def decrypt(self, pyfile):          self.passwords = self.getPassword().splitlines() | 
