From 77cbd2e627bf7be51c4fb124735f88829decb89d Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Fri, 23 Oct 2015 12:44:47 +0200 Subject: [SimpleHoster] Fix https://github.com/pyload/pyload/issues/2101 --- module/plugins/internal/SimpleHoster.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/plugins/internal') diff --git a/module/plugins/internal/SimpleHoster.py b/module/plugins/internal/SimpleHoster.py index 18e92c2d2..ce810deb4 100644 --- a/module/plugins/internal/SimpleHoster.py +++ b/module/plugins/internal/SimpleHoster.py @@ -17,7 +17,7 @@ from module.plugins.internal.utils import (encode, parse_name, parse_size, class SimpleHoster(Hoster): __name__ = "SimpleHoster" __type__ = "hoster" - __version__ = "2.04" + __version__ = "2.05" __status__ = "stable" __pattern__ = r'^unmatchable$' @@ -317,7 +317,7 @@ class SimpleHoster(Hoster): def check_errors(self): if not self.html: - self.log_warning(_("No html code to check")) + self.log_debug("No data to check") return if self.IP_BLOCKED_PATTERN and re.search(self.IP_BLOCKED_PATTERN, self.html): -- cgit v1.2.3