summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-03-06 23:01:32 +0100
committerGravatar Stefano <l.stickell@yahoo.it> 2013-03-06 23:01:32 +0100
commitf9a78e7ff37cc7b2420a58cfb7539453aa78678c (patch)
tree45dacc79bdd980be577f0d9beca938f755e91cd5 /module
parentMerge pull request #31 from stickell/patch-1 (diff)
downloadpyload-f9a78e7ff37cc7b2420a58cfb7539453aa78678c.tar.xz
LinkdecrypterCom: regex fix
Diffstat (limited to 'module')
-rw-r--r--module/plugins/hooks/LinkdecrypterCom.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hooks/LinkdecrypterCom.py b/module/plugins/hooks/LinkdecrypterCom.py
index a554e05eb..2cb91d120 100644
--- a/module/plugins/hooks/LinkdecrypterCom.py
+++ b/module/plugins/hooks/LinkdecrypterCom.py
@@ -24,14 +24,14 @@ from module.utils import remove_chars
class LinkdecrypterCom(Hook):
__name__ = "LinkdecrypterCom"
- __version__ = "0.15"
+ __version__ = "0.16"
__description__ = """linkdecrypter.com - regexp loader"""
__config__ = [ ("activated", "bool", "Activated" , "True") ]
__author_name__ = ("zoidberg")
def coreReady(self):
page = getURL("http://linkdecrypter.com/")
- m = re.search(r'<b>Supported</b>: <i>([^+<]*)', page)
+ m = re.search(r'<b>Supported\(\d+\)</b>: <i>([^+<]*)', page)
if not m:
self.logError(_("Crypter list not found"))
return
@@ -56,4 +56,4 @@ class LinkdecrypterCom(Hook):
dict["pattern"] = regexp
dict["re"] = re.compile(regexp)
- self.logDebug("REGEXP: " + regexp) \ No newline at end of file
+ self.logDebug("REGEXP: " + regexp)