diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-08-21 00:03:21 +0200 |
---|---|---|
committer | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-08-21 00:03:21 +0200 |
commit | 0e87bb35a0fe1317998153bc8ef9e5072248ab2a (patch) | |
tree | abfcf1f5725afcb5f383147c000f9bcd720bbef3 | |
parent | Spare plugin updates (diff) | |
download | pyload-0e87bb35a0fe1317998153bc8ef9e5072248ab2a.tar.xz |
fix #1765
-rw-r--r-- | module/plugins/internal/SimpleCrypter.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/internal/SimpleCrypter.py b/module/plugins/internal/SimpleCrypter.py index 6a3f91a5b..9597116cc 100644 --- a/module/plugins/internal/SimpleCrypter.py +++ b/module/plugins/internal/SimpleCrypter.py @@ -10,7 +10,7 @@ from module.utils import fixup, html_unescape class SimpleCrypter(Crypter, SimpleHoster): __name__ = "SimpleCrypter" __type__ = "crypter" - __version__ = "0.60" + __version__ = "0.61" __status__ = "testing" __pattern__ = r'^unmatchable$' @@ -91,6 +91,7 @@ class SimpleCrypter(Crypter, SimpleHoster): def decrypt(self, pyfile): + self.links = [] #@TODO: Recheck in 0.4.10 self.prepare() self.check_info() #@TODO: Remove in 0.4.10 |