diff options
author | 2015-04-13 08:21:50 +0200 | |
---|---|---|
committer | 2015-04-13 08:21:50 +0200 | |
commit | 486adc1874e463b1563ad2394b216faff388b10d (patch) | |
tree | 58009056cb67e35930d49a9dd6af45adf6a8d434 /pyload/plugin/crypter/LinkCryptWs.py | |
parent | Fix https://github.com/pyload/pyload/issues/1349 (diff) | |
download | pyload-486adc1874e463b1563ad2394b216faff388b10d.tar.xz |
Prepare plugins to merging from stable
Diffstat (limited to 'pyload/plugin/crypter/LinkCryptWs.py')
-rw-r--r-- | pyload/plugin/crypter/LinkCryptWs.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pyload/plugin/crypter/LinkCryptWs.py b/pyload/plugin/crypter/LinkCryptWs.py index 8e5ea2a03..a3eb4f179 100644 --- a/pyload/plugin/crypter/LinkCryptWs.py +++ b/pyload/plugin/crypter/LinkCryptWs.py @@ -12,15 +12,15 @@ from pyload.utils import html_unescape class LinkCryptWs(Crypter): - __name = "LinkCryptWs" - __type = "crypter" - __version = "0.08" + __name__ = "LinkCryptWs" + __type__ = "crypter" + __version__ = "0.08" - __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", ""), ("Gummibaer", "")] @@ -37,7 +37,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") |