diff options
author | 2011-02-05 18:19:29 +0100 | |
---|---|---|
committer | 2011-02-05 18:19:29 +0100 | |
commit | b509aa764d41dbad336df30cdfa33ec5c84ae8ef (patch) | |
tree | 8fee1a64c3c2b2cd420cdd41962564aab03463f6 /module/plugins/Plugin.py | |
parent | merge (diff) | |
download | pyload-b509aa764d41dbad336df30cdfa33ec5c84ae8ef.tar.xz |
fixes
Diffstat (limited to 'module/plugins/Plugin.py')
-rw-r--r-- | module/plugins/Plugin.py | 3 |
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: |