diff options
author | Stefano <l.stickell@yahoo.it> | 2013-07-21 15:03:21 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-07-21 15:03:21 +0200 |
commit | 4b61d36bf18931df0a9720047b3619ce245f8a1b (patch) | |
tree | fa6214ca6c85eb547dfe7de1ec7502ff3ce71793 /module/plugins/crypter/UlozToFolder.py | |
parent | Normalize line endings to avoid line endings merge conflicts (diff) | |
download | pyload-4b61d36bf18931df0a9720047b3619ce245f8a1b.tar.xz |
Fixed PEP 8 violations in Crypters
Diffstat (limited to 'module/plugins/crypter/UlozToFolder.py')
-rw-r--r-- | module/plugins/crypter/UlozToFolder.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/module/plugins/crypter/UlozToFolder.py b/module/plugins/crypter/UlozToFolder.py index 814d5240d..a5ccfc753 100644 --- a/module/plugins/crypter/UlozToFolder.py +++ b/module/plugins/crypter/UlozToFolder.py @@ -3,6 +3,7 @@ import re from module.plugins.Crypter import Crypter + class UlozToFolder(Crypter): __name__ = "UlozToFolder" __type__ = "crypter" @@ -20,10 +21,11 @@ class UlozToFolder(Crypter): html = self.load(self.pyfile.url) new_links = [] - for i in range(1,100): + for i in range(1, 100): self.logInfo("Fetching links from page %i" % i) found = re.search(self.FOLDER_PATTERN, html, re.DOTALL) - if found is None: self.fail("Parse error (FOLDER)") + if found is None: + self.fail("Parse error (FOLDER)") new_links.extend(re.findall(self.LINK_PATTERN, found.group(1))) found = re.search(self.NEXT_PAGE_PATTERN, html) @@ -35,6 +37,6 @@ class UlozToFolder(Crypter): self.logInfo("Limit of 99 pages reached, aborting") if new_links: - self.core.files.addLinks(map(lambda s:"http://ulozto.net/%s" % s, new_links), self.pyfile.package().id) + self.core.files.addLinks(map(lambda s: "http://ulozto.net/%s" % s, new_links), self.pyfile.package().id) else: - self.fail('Could not extract any links')
\ No newline at end of file + self.fail('Could not extract any links') |