diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-21 23:57:15 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-21 23:57:15 +0200 |
commit | 19b1844d2a76e5347099522df12cc435aac07733 (patch) | |
tree | 0e2e939c0fdd1ba672f1a00a39ff1e35874c0855 /module/plugins | |
parent | Merge pull request #2093 from malkavi/stable (diff) | |
parent | Update SimpleCrypter.py (diff) | |
download | pyload-19b1844d2a76e5347099522df12cc435aac07733.tar.xz |
Merge pull request #2095 from GammaC0de/patch-6
[SimpleCrypter] update
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/internal/SimpleCrypter.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/SimpleCrypter.py b/module/plugins/internal/SimpleCrypter.py index 050fff4a8..dc02cd056 100644 --- a/module/plugins/internal/SimpleCrypter.py +++ b/module/plugins/internal/SimpleCrypter.py @@ -11,7 +11,7 @@ from module.plugins.internal.utils import replace_patterns, set_cookie, set_cook class SimpleCrypter(Crypter): __name__ = "SimpleCrypter" __type__ = "crypter" - __version__ = "0.74" + __version__ = "0.75" __status__ = "testing" __pattern__ = r'^unmatchable$' @@ -89,7 +89,7 @@ class SimpleCrypter(Crypter): @classmethod def get_info(cls, url="", html=""): - info = super(SimpleHoster, cls).get_info(url) + info = super(SimpleCrypter, cls).get_info(url) info.update(cls.api_info(url)) |