summaryrefslogtreecommitdiffstats
path: root/pyload/plugins
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-09-17 14:23:28 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-09-17 14:23:28 +0200
commitd53f3b99a1f5176caa94fcbdd3e3fe59f346ece1 (patch)
tree52280c0176566f27d225efcf6ae75f5c28c61a88 /pyload/plugins
parentstub class for content provider (diff)
downloadpyload-d53f3b99a1f5176caa94fcbdd3e3fe59f346ece1.tar.xz
more fixes for py2.5
Diffstat (limited to 'pyload/plugins')
-rw-r--r--pyload/plugins/Crypter.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/pyload/plugins/Crypter.py b/pyload/plugins/Crypter.py
index 2f5584074..cce43fb56 100644
--- a/pyload/plugins/Crypter.py
+++ b/pyload/plugins/Crypter.py
@@ -135,8 +135,6 @@ class Crypter(Base):
self.package = package
#: Password supplied by user
self.password = password
- #: Propose a renaming of the owner package
- self.rename = None
# For old style decrypter, do not use these!
self.packages = []
@@ -236,10 +234,9 @@ class Crypter(Base):
:return: Decrypting results
"""
try:
- return self._decrypt(urls)
+ return to_list(self._decrypt(urls))
except Exception:
- if self.core.debug:
- print_exc()
+ self.core.print_exc()
return []
def getLocalContent(self, urls):