diff options
author | 2015-10-23 12:48:04 +0200 | |
---|---|---|
committer | 2015-10-23 12:48:04 +0200 | |
commit | 1a9f3e369e731dec47ecf21ff0ff33afbe190018 (patch) | |
tree | 355b85ec755ba274ca618697c167be5845520d54 /module/plugins/internal | |
parent | [SimpleHoster] Fix https://github.com/pyload/pyload/issues/2101 (diff) | |
download | pyload-1a9f3e369e731dec47ecf21ff0ff33afbe190018.tar.xz |
[Dereferer] Don't preload
Diffstat (limited to 'module/plugins/internal')
-rw-r--r-- | module/plugins/internal/SimpleCrypter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/internal/SimpleCrypter.py b/module/plugins/internal/SimpleCrypter.py index 0fbc5ed69..51b104381 100644 --- a/module/plugins/internal/SimpleCrypter.py +++ b/module/plugins/internal/SimpleCrypter.py @@ -281,7 +281,7 @@ class SimpleCrypter(Crypter): 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): |