diff options
Diffstat (limited to 'module/plugins/crypter/OronComFolder.py')
-rwxr-xr-x | module/plugins/crypter/OronComFolder.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/module/plugins/crypter/OronComFolder.py b/module/plugins/crypter/OronComFolder.py index 57b273163..f6637033b 100755 --- a/module/plugins/crypter/OronComFolder.py +++ b/module/plugins/crypter/OronComFolder.py @@ -1,9 +1,10 @@ # -*- coding: utf-8 -*- -import re +import re from module.plugins.Crypter import Crypter + class OronComFolder(Crypter): __name__ = "OronComFolder" __type__ = "crypter" @@ -22,10 +23,11 @@ class OronComFolder(Crypter): new_links = [] folder = re.search(self.FOLDER_PATTERN, html, re.DOTALL) - if folder is None: self.fail("Parse error (FOLDER)") - + if folder is None: + self.fail("Parse error (FOLDER)") + new_links.extend(re.findall(self.LINK_PATTERN, folder.group(0))) - + if new_links: self.core.files.addLinks(new_links, self.pyfile.package().id) else: |