summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/crypter/LinkCryptWs.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-03-26 12:44:15 +0100
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-03-26 12:44:15 +0100
commitce103ce1e60661f7bcdf6a033335134de61d48b1 (patch)
tree29b9421062cc8341dc10b6ca65e9a64802c3db71 /pyload/plugin/crypter/LinkCryptWs.py
parent.min.css -> .css (diff)
downloadpyload-ce103ce1e60661f7bcdf6a033335134de61d48b1.tar.xz
Prepare to merging
Diffstat (limited to 'pyload/plugin/crypter/LinkCryptWs.py')
-rw-r--r--pyload/plugin/crypter/LinkCryptWs.py16
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")