summaryrefslogtreecommitdiffstats
path: root/module/plugins/Plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/Plugin.py')
-rw-r--r--module/plugins/Plugin.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py
index 1ecc3ded3..54900422c 100644
--- a/module/plugins/Plugin.py
+++ b/module/plugins/Plugin.py
@@ -385,7 +385,8 @@ class Plugin(object):
f = open(self.lastDownload, "rb")
content = f.read(read_size if read_size else -1)
f.close()
- self.log.debug("Content: %s" % content)
+ #produces encoding errors, better log to other file in the future?
+ #self.log.debug("Content: %s" % content)
for name, rule in rules.iteritems():
if type(rule) in (str, unicode):
if rule in content: