diff options
author | 2015-09-21 01:08:35 +0200 | |
---|---|---|
committer | 2015-09-21 01:08:35 +0200 | |
commit | 59d2ad3541bf133ddd69fd3b7c633e7e226e4829 (patch) | |
tree | 4fffa227d1acc13190382b0b059f8cd99824ae12 /module/plugins/internal/SimpleCrypter.py | |
parent | [Account] parse_info -> grab_info (diff) | |
download | pyload-59d2ad3541bf133ddd69fd3b7c633e7e226e4829.tar.xz |
Spare improvements and fixes
Diffstat (limited to 'module/plugins/internal/SimpleCrypter.py')
-rw-r--r-- | module/plugins/internal/SimpleCrypter.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/module/plugins/internal/SimpleCrypter.py b/module/plugins/internal/SimpleCrypter.py index d348f92e2..488578bc0 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.61" + __version__ = "0.62" __status__ = "testing" __pattern__ = r'^unmatchable$' @@ -90,8 +90,12 @@ class SimpleCrypter(Crypter, SimpleHoster): self.log_error(_("Too many redirects")) + def prepare(self): + self.links = [] + return super(SimpleCrypter, self).prepare() + + def decrypt(self, pyfile): - self.links = [] #@TODO: Recheck in 0.4.10 self.prepare() self.check_info() #@TODO: Remove in 0.4.10 |