summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-26 20:48:37 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-26 20:48:37 +0100
commit0362f342d3526ded8650acb219e205d3f93c37a4 (patch)
treed02ceb6fd20c7082bddba24e452e7c292676d248 /module
parentAssign in-line regex to PATTERN variable in a couple of accounts (diff)
downloadpyload-0362f342d3526ded8650acb219e205d3f93c37a4.tar.xz
[RSDF] Fix typo (thx Guidobelix)
Diffstat (limited to 'module')
-rw-r--r--module/plugins/container/RSDF.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/container/RSDF.py b/module/plugins/container/RSDF.py
index 781b00326..0819fcdea 100644
--- a/module/plugins/container/RSDF.py
+++ b/module/plugins/container/RSDF.py
@@ -9,7 +9,7 @@ from module.plugins.Container import Container
class RSDF(Container):
__name__ = "RSDF"
- __version__ = "0.22"
+ __version__ = "0.23"
__pattern__ = r'.+\.rsdf'
@@ -49,4 +49,4 @@ class RSDF(Container):
decryptedUrl = link.replace('CCF: ', '')
self.urls.append(decryptedUrl)
- self.logDebug("Adding package %s with %d links" % (pyfile.package().name, len(links)))
+ self.logDebug("Adding package %s with %d links" % (pyfile.package().name, len(self.urls)))