summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/crypter/DontKnowMe.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/DontKnowMe.py
parentImproved .gitattributes (diff)
downloadpyload-ff581d9a4a1637b4e06bcbe77d67591f9279fe1b.tar.xz
Fixed PEP 8 violations in Crypters
Diffstat (limited to 'pyload/plugins/crypter/DontKnowMe.py')
-rw-r--r--pyload/plugins/crypter/DontKnowMe.py3
1 files changed, 2 insertions, 1 deletions
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)