summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/crypter/Dereferer.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/Dereferer.py
parentImproved .gitattributes (diff)
downloadpyload-ff581d9a4a1637b4e06bcbe77d67591f9279fe1b.tar.xz
Fixed PEP 8 violations in Crypters
Diffstat (limited to 'pyload/plugins/crypter/Dereferer.py')
-rw-r--r--pyload/plugins/crypter/Dereferer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyload/plugins/crypter/Dereferer.py b/pyload/plugins/crypter/Dereferer.py
index 584835e18..7b7c34fee 100644
--- a/pyload/plugins/crypter/Dereferer.py
+++ b/pyload/plugins/crypter/Dereferer.py
@@ -20,6 +20,7 @@ import urllib
from module.plugins.Crypter import Crypter
+
class Dereferer(Crypter):
__name__ = "Dereferer"
__type__ = "crypter"
@@ -31,4 +32,4 @@ class Dereferer(Crypter):
def decrypt(self, pyfile):
link = re.match(self.__pattern__, self.pyfile.url).group('url')
- self.core.files.addLinks([ urllib.unquote(link).rstrip('+') ], self.pyfile.package().id)
+ self.core.files.addLinks([urllib.unquote(link).rstrip('+')], self.pyfile.package().id)