diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-12-20 23:53:22 +0100 |
---|---|---|
committer | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-12-20 23:53:22 +0100 |
commit | c6b0d1ae7f889dfcbecafec380b844daa9b78d83 (patch) | |
tree | 75d0ea836b8ab10c17d7d788d9e01d8bbb9e24ac /module | |
parent | [SimpleHoster] update (4) (diff) | |
download | pyload-c6b0d1ae7f889dfcbecafec380b844daa9b78d83.tar.xz |
[SimpleHoster] update (5)
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/internal/SimpleHoster.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/internal/SimpleHoster.py b/module/plugins/internal/SimpleHoster.py index bcc0dfebe..303e84174 100644 --- a/module/plugins/internal/SimpleHoster.py +++ b/module/plugins/internal/SimpleHoster.py @@ -16,7 +16,7 @@ from module.plugins.internal.utils import (encode, parse_name, parse_size, class SimpleHoster(Hoster): __name__ = "SimpleHoster" __type__ = "hoster" - __version__ = "2.12" + __version__ = "2.13" __status__ = "stable" __pattern__ = r'^unmatchable$' @@ -277,8 +277,8 @@ class SimpleHoster(Hoster): self.log_info(_("Processing as free download...")) self.handle_free(pyfile) - if not self.link: - self.error(_("%s download link not found") % ("Premium" if self.premium else "Free")) + if not self.link: + self.error(_("%s download link not found") % ("Premium" if self.premium else "Free")) if not self.last_download: self.log_info(_("Downloading file...")) |