diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-09 01:52:24 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-09 01:52:24 +0200 |
commit | da1180bc2d428ad52fbbecda8473fc1fb7267438 (patch) | |
tree | 1565947cf7b67e21e28f0c27df2f9dd3e91bb1ca /module/plugins/hoster | |
parent | New plugin: TNTVillageScambioeticoOrg (diff) | |
download | pyload-da1180bc2d428ad52fbbecda8473fc1fb7267438.tar.xz |
[SimpleHoster] Improve checkFile
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/LoadTo.py | 2 | ||||
-rw-r--r-- | module/plugins/hoster/TurbobitNet.py | 2 | ||||
-rw-r--r-- | module/plugins/hoster/UpleaCom.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/LoadTo.py b/module/plugins/hoster/LoadTo.py index 11c96de60..7a9be86e1 100644 --- a/module/plugins/hoster/LoadTo.py +++ b/module/plugins/hoster/LoadTo.py @@ -18,7 +18,7 @@ class LoadTo(SimpleHoster): __pattern__ = r'http://(?:www\.)?load\.to/\w+' __config__ = [("use_premium", "bool", "Use premium account if available", True)] - __description__ = """ Load.to hoster plugin """ + __description__ = """Load.to hoster plugin""" __license__ = "GPLv3" __authors__ = [("halfman", "Pulpan3@gmail.com"), ("stickell", "l.stickell@yahoo.it")] diff --git a/module/plugins/hoster/TurbobitNet.py b/module/plugins/hoster/TurbobitNet.py index 254e06c2a..a4c36bc2a 100644 --- a/module/plugins/hoster/TurbobitNet.py +++ b/module/plugins/hoster/TurbobitNet.py @@ -22,7 +22,7 @@ class TurbobitNet(SimpleHoster): __pattern__ = r'http://(?:www\.)?turbobit\.net/(?:download/free/)?(?P<ID>\w+)' __config__ = [("use_premium", "bool", "Use premium account if available", True)] - __description__ = """ Turbobit.net hoster plugin """ + __description__ = """Turbobit.net hoster plugin""" __license__ = "GPLv3" __authors__ = [("zoidberg", "zoidberg@mujmail.cz"), ("prOq", None)] diff --git a/module/plugins/hoster/UpleaCom.py b/module/plugins/hoster/UpleaCom.py index 9d460ef98..a6ec0807e 100644 --- a/module/plugins/hoster/UpleaCom.py +++ b/module/plugins/hoster/UpleaCom.py @@ -51,7 +51,7 @@ class UpleaCom(XFSHoster): m = re.search(self.WAIT_PATTERN, self.html) if m: - self.logDebug(_("Waiting %s seconds") % m.group(1)) + self.logDebug("Waiting %s seconds" % m.group(1)) self.wait(m.group(1), True) self.retry() |