diff options
author | 2015-03-26 11:16:59 +0100 | |
---|---|---|
committer | 2015-03-26 22:02:26 +0100 | |
commit | bc1af83376498c87ea8141a2e61c9d0ecb9dd5b5 (patch) | |
tree | 3827bf507995e90bf4c1167e346698f77475ddcf /module/plugins/crypter/LinkdecrypterCom.py | |
parent | Merge pull request #1290 from saintego/patch-2 (diff) | |
download | pyload-bc1af83376498c87ea8141a2e61c9d0ecb9dd5b5.tar.xz |
Tiny code cosmetics
Diffstat (limited to 'module/plugins/crypter/LinkdecrypterCom.py')
-rw-r--r-- | module/plugins/crypter/LinkdecrypterCom.py | 2 |
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] |