summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/LinkdecrypterCom.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-03-26 11:16:59 +0100
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-03-26 11:16:59 +0100
commit3150599624d87fc28077faf9480ba1741adcc2d4 (patch)
tree4bd790324f78f5dbebd20b62474bb88f7ea4c9f6 /module/plugins/crypter/LinkdecrypterCom.py
parent[Extractor] Rename method 'test' to 'verify' (diff)
downloadpyload-3150599624d87fc28077faf9480ba1741adcc2d4.tar.xz
Tiny code cosmetics
Diffstat (limited to 'module/plugins/crypter/LinkdecrypterCom.py')
-rw-r--r--module/plugins/crypter/LinkdecrypterCom.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/crypter/LinkdecrypterCom.py b/module/plugins/crypter/LinkdecrypterCom.py
index 01db87011..c2e3ed91d 100644
--- a/module/plugins/crypter/LinkdecrypterCom.py
+++ b/module/plugins/crypter/LinkdecrypterCom.py
@@ -37,7 +37,7 @@ class LinkdecrypterCom(Crypter):
self.html = self.load('http://linkdecrypter.com/', post=post_dict, decode=True)
while retries:
- m = re.search(self.TEXTAREA_PATTERN, self.html, flags=re.S)
+ m = re.search(self.TEXTAREA_PATTERN, self.html, re.S)
if m:
self.urls = [x for x in m.group(1).splitlines() if '[LINK-ERROR]' not in x]