summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-04-02 21:45:20 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-04-02 21:45:20 +0200
commita0308bfa9767895e629c1746e4b9e80313c33237 (patch)
tree408dfd5b1a02d63afa4d08ab20a241ce6e01adc2 /module/plugins/internal
parentDataHuFolder: added support to password protected folders (diff)
downloadpyload-a0308bfa9767895e629c1746e4b9e80313c33237.tar.xz
SimpleCrypter: decoding loaded html
Diffstat (limited to 'module/plugins/internal')
-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 b8942c724..a36df1979 100644
--- a/module/plugins/internal/SimpleCrypter.py
+++ b/module/plugins/internal/SimpleCrypter.py
@@ -22,7 +22,7 @@ from module.plugins.Crypter import Crypter
class SimpleCrypter(Crypter):
__name__ = "SimpleCrypter"
- __version__ = "0.03"
+ __version__ = "0.04"
__pattern__ = None
__type__ = "crypter"
__description__ = """Base crypter plugin"""
@@ -39,7 +39,7 @@ class SimpleCrypter(Crypter):
"""
def decrypt(self, pyfile):
- self.html = self.load(pyfile.url)
+ self.html = self.load(pyfile.url, decode=True)
package_name, folder_name = self.getPackageNameAndFolder()