diff options
author | 2015-10-10 17:49:14 +0200 | |
---|---|---|
committer | 2015-10-10 17:49:14 +0200 | |
commit | 8e15c1af88b61cebda68a3b40352bf388c2010c7 (patch) | |
tree | bd1fb40094d907ccad41b4770f947cf9cac020cf /module/plugins/crypter/RelinkUs.py | |
parent | Merge branch 'pr/n1997_GammaC0de' into stable (diff) | |
download | pyload-8e15c1af88b61cebda68a3b40352bf388c2010c7.tar.xz |
Spare code cosmetics (3)
Diffstat (limited to 'module/plugins/crypter/RelinkUs.py')
-rw-r--r-- | module/plugins/crypter/RelinkUs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/crypter/RelinkUs.py b/module/plugins/crypter/RelinkUs.py index 4ff13a276..3e40b554d 100644 --- a/module/plugins/crypter/RelinkUs.py +++ b/module/plugins/crypter/RelinkUs.py @@ -12,7 +12,7 @@ from module.utils import save_join as fs_join class RelinkUs(Crypter): - __name__ = "RelinkUs" + __name = "RelinkUs" __type__ = "crypter" __version__ = "3.14" __status__ = "testing" @@ -100,7 +100,7 @@ class RelinkUs(Crypter): def init_package(self, pyfile): - self.fileid = re.match(self.__pattern__, pyfile.url).group('ID') + self.fileid = re.match(self.__pattern, pyfile.url).group('ID') self.package = pyfile.package() |