summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/FilefactoryComFolder.py
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-07-21 15:03:21 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-07-21 15:03:21 +0200
commit4b61d36bf18931df0a9720047b3619ce245f8a1b (patch)
treefa6214ca6c85eb547dfe7de1ec7502ff3ce71793 /module/plugins/crypter/FilefactoryComFolder.py
parentNormalize line endings to avoid line endings merge conflicts (diff)
downloadpyload-4b61d36bf18931df0a9720047b3619ce245f8a1b.tar.xz
Fixed PEP 8 violations in Crypters
Diffstat (limited to 'module/plugins/crypter/FilefactoryComFolder.py')
-rw-r--r--module/plugins/crypter/FilefactoryComFolder.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/crypter/FilefactoryComFolder.py b/module/plugins/crypter/FilefactoryComFolder.py
index 32793b491..64b8ac37e 100644
--- a/module/plugins/crypter/FilefactoryComFolder.py
+++ b/module/plugins/crypter/FilefactoryComFolder.py
@@ -3,6 +3,7 @@
import re
from module.plugins.Crypter import Crypter
+
class FilefactoryComFolder(Crypter):
__name__ = "FilefactoryComFolder"
__type__ = "crypter"
@@ -22,7 +23,7 @@ class FilefactoryComFolder(Crypter):
html = self.load(url_base)
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)")
@@ -41,4 +42,4 @@ class FilefactoryComFolder(Crypter):
if new_links:
self.core.files.addLinks(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')