summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/SimpleCrypter.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-15 05:14:32 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-06-15 05:14:32 +0200
commitb2cd27adb0912003d8a71cff89e49c7a4d594d3f (patch)
tree299fd5970aa65d9bff6ecda003a1525ef98f8f5b /module/plugins/internal/SimpleCrypter.py
parent[XFSCrypter] Improve OFFLINE_PATTERN (diff)
downloadpyload-b2cd27adb0912003d8a71cff89e49c7a4d594d3f.tar.xz
[SimpleCrypter] Fixup
Diffstat (limited to 'module/plugins/internal/SimpleCrypter.py')
-rw-r--r--module/plugins/internal/SimpleCrypter.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/SimpleCrypter.py b/module/plugins/internal/SimpleCrypter.py
index be0d5e9d5..6a339b46e 100644
--- a/module/plugins/internal/SimpleCrypter.py
+++ b/module/plugins/internal/SimpleCrypter.py
@@ -11,7 +11,7 @@ from module.utils import fixup, html_unescape
class SimpleCrypter(Crypter, SimpleHoster):
__name__ = "SimpleCrypter"
__type__ = "crypter"
- __version__ = "0.53"
+ __version__ = "0.54"
__pattern__ = r'^unmatchable$'
__config__ = [("use_subfolder" , "bool", "Save package to subfolder" , True), #: Overrides core.config['general']['folder_per_package']
@@ -114,7 +114,7 @@ class SimpleCrypter(Crypter, SimpleHoster):
self.preload()
self.checkInfo()
- self.links = self.getLinks()
+ self.links = self.getLinks() or list()
if hasattr(self, 'PAGES_PATTERN') and hasattr(self, 'loadPage'):
self.handlePages(pyfile)