diff options
Diffstat (limited to 'module/plugins/crypter/CryptItCom.py')
| -rw-r--r-- | module/plugins/crypter/CryptItCom.py | 18 | 
1 files changed, 12 insertions, 6 deletions
| diff --git a/module/plugins/crypter/CryptItCom.py b/module/plugins/crypter/CryptItCom.py index 6f8fbaa1a..2cf4e9f62 100644 --- a/module/plugins/crypter/CryptItCom.py +++ b/module/plugins/crypter/CryptItCom.py @@ -1,13 +1,19 @@  # -*- coding: utf-8 -*- -from module.plugins.internal.DeadCrypter import DeadCrypter +from module.plugins.internal.DeadCrypter import DeadCrypter, create_getInfo  class CryptItCom(DeadCrypter): -    __name__ = "CryptItCom" -    __type__ = "crypter" -    __pattern__ = r'http://(?:www\.)?crypt-it\.com/(s|e|d|c)/[\w]+' +    __name__    = "CryptItCom" +    __type__    = "crypter"      __version__ = "0.11" + +    __pattern__ = r'http://(?:www\.)?crypt-it\.com/(s|e|d|c)/\w+' +    __config__  = [] +      __description__ = """Crypt-it.com decrypter plugin""" -    __author_name__ = "jeix" -    __author_mail__ = "jeix@hasnomail.de" +    __license__     = "GPLv3" +    __authors__     = [("jeix", "jeix@hasnomail.de")] + + +getInfo = create_getInfo(CryptItCom) | 
