summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar GammaC0de <GammaC0de@users.noreply.github.com> 2015-06-09 21:47:21 +0200
committerGravatar GammaC0de <GammaC0de@users.noreply.github.com> 2015-06-09 21:47:21 +0200
commit85e7ad6634399aa54fcbb896ca992a7d773ebd77 (patch)
treef16a1d624bbd37a27842de9ba5b14fb66152ccab /module
parent[SimpleHoster] preload referer to False (diff)
downloadpyload-85e7ad6634399aa54fcbb896ca992a7d773ebd77.tar.xz
Update SimpleCrypter.py
Diffstat (limited to 'module')
-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 923775e32..be0d5e9d5 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.52"
+ __version__ = "0.53"
__pattern__ = r'^unmatchable$'
__config__ = [("use_subfolder" , "bool", "Save package to subfolder" , True), #: Overrides core.config['general']['folder_per_package']
@@ -122,7 +122,7 @@ class SimpleCrypter(Crypter, SimpleHoster):
self.logDebug("Package has %d links" % len(self.links))
if self.links:
- self.links = [html_unescape(l.decode('unicode-escape').strip()) for l in links] #@TODO: Move to Crypter in 0.4.10
+ self.links = [html_unescape(l.decode('unicode-escape').strip()) for l in self.links] #@TODO: Move to Crypter in 0.4.10
self.packages = [(self.info['name'], self.links, self.info['folder'])]
elif not self.urls and not self.packages: #@TODO: Remove in 0.4.10