From ff581d9a4a1637b4e06bcbe77d67591f9279fe1b Mon Sep 17 00:00:00 2001 From: Stefano Date: Sun, 21 Jul 2013 15:03:21 +0200 Subject: Fixed PEP 8 violations in Crypters (cherry-picked from 4b61d36bf18931df0a9720047b3619ce245f8a1b) --- pyload/plugins/crypter/DontKnowMe.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pyload/plugins/crypter/DontKnowMe.py') diff --git a/pyload/plugins/crypter/DontKnowMe.py b/pyload/plugins/crypter/DontKnowMe.py index dfa72df47..0791e3c22 100644 --- a/pyload/plugins/crypter/DontKnowMe.py +++ b/pyload/plugins/crypter/DontKnowMe.py @@ -5,6 +5,7 @@ import urllib from module.plugins.Crypter import Crypter + class DontKnowMe(Crypter): __name__ = "DontKnowMe" __type__ = "crypter" @@ -18,4 +19,4 @@ class DontKnowMe(Crypter): def decrypt(self, pyfile): link = re.findall(self.LINK_PATTERN, self.pyfile.url)[0] - self.core.files.addLinks([ urllib.unquote(link) ], self.pyfile.package().id) + self.core.files.addLinks([urllib.unquote(link)], self.pyfile.package().id) -- cgit v1.2.3