summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-07-06 20:41:59 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-07-06 20:41:59 +0200
commit94c003dce452e768bf8d1c6598bde2d954cc0af7 (patch)
tree80096b3de06b04c2a9774a31cd290bf2e542fe8a /module
parentRevert Ftp.py and Http.py changes (diff)
downloadpyload-94c003dce452e768bf8d1c6598bde2d954cc0af7.tar.xz
Use Base log methods
Diffstat (limited to 'module')
-rw-r--r--module/plugins/container/LinkList.py2
-rw-r--r--module/plugins/container/RSDF.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/container/LinkList.py b/module/plugins/container/LinkList.py
index 79678954d..ab7700181 100644
--- a/module/plugins/container/LinkList.py
+++ b/module/plugins/container/LinkList.py
@@ -61,7 +61,7 @@ class LinkList(Container):
txt = open(file_name, 'wb')
txt.close()
except:
- self.log.warning(_("LinkList could not be cleared."))
+ self.logWarning(_("LinkList could not be cleared."))
for name, links in packages.iteritems():
self.packages.append((name, links, name))
diff --git a/module/plugins/container/RSDF.py b/module/plugins/container/RSDF.py
index 41cdfccb7..cc090a267 100644
--- a/module/plugins/container/RSDF.py
+++ b/module/plugins/container/RSDF.py
@@ -46,5 +46,5 @@ class RSDF(Container):
decryptedUrl = link.replace('CCF: ', '')
links.append(decryptedUrl)
- self.log.debug("%s: adding package %s with %d links" % (self.__name__, pyfile.package().name, len(links)))
+ self.logDebug("%s: adding package %s with %d links" % (self.__name__, pyfile.package().name, len(links)))
self.packages.append((pyfile.package().name, links))