summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/MultiloadCz.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/crypter/MultiloadCz.py')
-rw-r--r--module/plugins/crypter/MultiloadCz.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/crypter/MultiloadCz.py b/module/plugins/crypter/MultiloadCz.py
index 72e9b3a8b..10cc5a3d7 100644
--- a/module/plugins/crypter/MultiloadCz.py
+++ b/module/plugins/crypter/MultiloadCz.py
@@ -5,7 +5,7 @@ from module.plugins.internal.Crypter import Crypter
class MultiloadCz(Crypter):
- __name__ = "MultiloadCz"
+ __name = "MultiloadCz"
__type__ = "crypter"
__version__ = "0.42"
__status__ = "testing"
@@ -28,7 +28,7 @@ class MultiloadCz(Crypter):
def decrypt(self, pyfile):
self.html = self.load(pyfile.url)
- if re.match(self.__pattern__, pyfile.url).group(1) == "slozka":
+ if re.match(self.__pattern, pyfile.url).group(1) == "slozka":
m = re.search(self.FOLDER_PATTERN, self.html)
if m is not None:
self.urls.extend(m.group(1).split())