diff options
| author | 2014-12-10 19:07:53 +0100 | |
|---|---|---|
| committer | 2014-12-10 19:07:53 +0100 | |
| commit | 2439bc22671dde697817291b721bfddb792a93b4 (patch) | |
| tree | dad4615b7f1d664263af6a85392282329aa0b8e0 /pyload/plugins/crypter/LinkCryptWs.py | |
| parent | Revert plugin directory structure (diff) | |
| download | pyload-2439bc22671dde697817291b721bfddb792a93b4.tar.xz | |
Fix plugins key attributes
Diffstat (limited to 'pyload/plugins/crypter/LinkCryptWs.py')
| -rw-r--r-- | pyload/plugins/crypter/LinkCryptWs.py | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/pyload/plugins/crypter/LinkCryptWs.py b/pyload/plugins/crypter/LinkCryptWs.py index 287e2d6a9..b20ab5780 100644 --- a/pyload/plugins/crypter/LinkCryptWs.py +++ b/pyload/plugins/crypter/LinkCryptWs.py @@ -13,15 +13,15 @@ from pyload.utils import html_unescape  class LinkCryptWs(Crypter): -    __name__    = "LinkCryptWs" -    __type__    = "crypter" -    __version__ = "0.07" +    __name    = "LinkCryptWs" +    __type    = "crypter" +    __version = "0.07" -    __pattern__ = r'http://(?:www\.)?linkcrypt\.ws/(dir|container)/(?P<ID>\w+)' +    __pattern = r'http://(?:www\.)?linkcrypt\.ws/(dir|container)/(?P<ID>\w+)' -    __description__ = """LinkCrypt.ws decrypter plugin""" -    __license__     = "GPLv3" -    __authors__     = [("kagenoshin", "kagenoshin[AT]gmx[DOT]ch"), +    __description = """LinkCrypt.ws decrypter plugin""" +    __license     = "GPLv3" +    __authors     = [("kagenoshin", "kagenoshin[AT]gmx[DOT]ch"),                         ("glukgluk", None),                         ("Gummibaer", None)] @@ -38,7 +38,7 @@ class LinkCryptWs(Crypter):      def prepare(self):          # Init -        self.fileid = re.match(self.__pattern__, self.pyfile.url).group('ID') +        self.fileid = re.match(self.__pattern, self.pyfile.url).group('ID')          self.req.cj.setCookie("linkcrypt.ws", "language", "en")  | 
