summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/crypter/CryptItCom.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:43:18 +0200
commitff581d9a4a1637b4e06bcbe77d67591f9279fe1b (patch)
tree0be4883b505aecc6920bdfccfcc9672636d59691 /pyload/plugins/crypter/CryptItCom.py
parentImproved .gitattributes (diff)
downloadpyload-ff581d9a4a1637b4e06bcbe77d67591f9279fe1b.tar.xz
Fixed PEP 8 violations in Crypters
Diffstat (limited to 'pyload/plugins/crypter/CryptItCom.py')
-rw-r--r--pyload/plugins/crypter/CryptItCom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/crypter/CryptItCom.py b/pyload/plugins/crypter/CryptItCom.py
index 4935758c7..08ae1cac5 100644
--- a/pyload/plugins/crypter/CryptItCom.py
+++ b/pyload/plugins/crypter/CryptItCom.py
@@ -16,7 +16,7 @@ class CryptItCom(Crypter):
__description__ = """Crypt.It.com Container Plugin"""
__author_name__ = ("jeix")
__author_mail__ = ("jeix@hasnomail.de")
-
+
def file_exists(self):
html = self.load(self.pyfile.url)
if r'<div class="folder">Was ist Crypt-It</div>' in html:
@@ -31,7 +31,7 @@ class CryptItCom(Crypter):
repl_pattern = r"/(s|e|d|c)/"
url = re.sub(repl_pattern, r"/d/", self.pyfile.url)
- pyfile.name = "tmp_cryptit_%s.ccf" % randint(0,1000)
+ pyfile.name = "tmp_cryptit_%s.ccf" % randint(0, 1000)
location = self.download(url)
self.packages.append(["Crypt-it Package", [location], "Crypt-it Package"])