diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-12-11 21:48:08 +0100 |
---|---|---|
committer | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-12-11 21:48:08 +0100 |
commit | 74d984df381614de938ba8010cc4c3dd80babb79 (patch) | |
tree | a13f1cda23d461e4d0297a0573c5deaf91e8d31e | |
parent | [ShareonlineBiz] version up (diff) | |
download | pyload-74d984df381614de938ba8010cc4c3dd80babb79.tar.xz |
[SimpleCrypter] fix #2188
-rw-r--r-- | module/plugins/internal/SimpleCrypter.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/module/plugins/internal/SimpleCrypter.py b/module/plugins/internal/SimpleCrypter.py index 59b9acc31..5a9bd5c84 100644 --- a/module/plugins/internal/SimpleCrypter.py +++ b/module/plugins/internal/SimpleCrypter.py @@ -5,13 +5,13 @@ import re from module.network.HTTPRequest import BadHeader from module.network.RequestFactory import getURL as get_url from module.plugins.internal.Crypter import Crypter, create_getInfo, parse_fileInfo -from module.plugins.internal.utils import replace_patterns, set_cookie, set_cookies +from module.plugins.internal.utils import parse_name, replace_patterns, set_cookie, set_cookies class SimpleCrypter(Crypter): __name__ = "SimpleCrypter" __type__ = "crypter" - __version__ = "0.79" + __version__ = "0.80" __status__ = "testing" __pattern__ = r'^unmatchable$' @@ -41,7 +41,7 @@ class SimpleCrypter(Crypter): example: TEMP_OFFLINE_PATTERN = r'Server maintainance' - You can override the getLinks method if you need a more sophisticated way to extract the links. + You can override the get_links method if you need a more sophisticated way to extract the links. If the links are splitted on multiple pages you can define the PAGES_PATTERN regex: @@ -49,7 +49,7 @@ class SimpleCrypter(Crypter): PAGES_PATTERN: (optional) group(1) should be the number of overall pages containing the links example: PAGES_PATTERN = r'Pages: (\d+)' - and its loadPage method: + and its load_page method: def load_page(self, page_n): return the html of the page number page_n @@ -256,11 +256,11 @@ class SimpleCrypter(Crypter): """ if self.premium: self.log_info(_("Decrypting as premium link...")) - self.handle_premium(pyfile) + self.handle_premium(self.pyfile) elif not self.LOGIN_ACCOUNT: self.log_info(_("Decrypting as free link...")) - self.handle_free(pyfile) + self.handle_free(self.pyfile) return self.links |