summaryrefslogtreecommitdiffstats
path: root/module/plugins
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-03-06 23:40:24 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-03-06 23:40:24 +0100
commite39f0c57be4440ffb359944b013fd3470bf001cf (patch)
tree45dacc79bdd980be577f0d9beca938f755e91cd5 /module/plugins
parentMerge pull request #31 from stickell/patch-1 (diff)
parentLinkdecrypterCom: regex fix (diff)
downloadpyload-e39f0c57be4440ffb359944b013fd3470bf001cf.tar.xz
Merge pull request #32 from stickell/patch-1
LinkdecrypterCom: regex fix
Diffstat (limited to 'module/plugins')
-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)