summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-04-20 22:10:35 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-04-20 22:10:35 +0200
commit9acacf2f9ad77267674f1705cf017bb60d2fc325 (patch)
treee88bcd279210459c769120b5611c9392da90e03e /module/plugins/internal
parentOneFichierCom: version increased (diff)
downloadpyload-9acacf2f9ad77267674f1705cf017bb60d2fc325.tar.xz
New crypter EasybytezComFolder
http://forum.pyload.org/viewtopic.php?p=9028#p9028 + html unescape in SimpleCrypter
Diffstat (limited to 'module/plugins/internal')
-rw-r--r--module/plugins/internal/SimpleCrypter.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/internal/SimpleCrypter.py b/module/plugins/internal/SimpleCrypter.py
index c9e350e86..d935bf1da 100644
--- a/module/plugins/internal/SimpleCrypter.py
+++ b/module/plugins/internal/SimpleCrypter.py
@@ -20,6 +20,7 @@
import re
from module.plugins.Crypter import Crypter
+from module.utils import html_unescape
class SimpleCrypter(Crypter):
@@ -57,7 +58,7 @@ class SimpleCrypter(Crypter):
if hasattr(self, 'TITLE_PATTERN'):
m = re.search(self.TITLE_PATTERN, self.html)
if m:
- name = folder = m.group('title').strip()
+ name = folder = html_unescape(m.group('title').strip())
self.logDebug("Found name [%s] and folder [%s] in package info" % (name, folder))
return name, folder