diff options
author | 2013-07-21 15:03:21 +0200 | |
---|---|---|
committer | 2013-07-21 15:43:18 +0200 | |
commit | ff581d9a4a1637b4e06bcbe77d67591f9279fe1b (patch) | |
tree | 0be4883b505aecc6920bdfccfcc9672636d59691 /pyload/plugins/crypter/Dereferer.py | |
parent | Improved .gitattributes (diff) | |
download | pyload-ff581d9a4a1637b4e06bcbe77d67591f9279fe1b.tar.xz |
Fixed PEP 8 violations in Crypters
(cherry-picked from 4b61d36bf18931df0a9720047b3619ce245f8a1b)
Diffstat (limited to 'pyload/plugins/crypter/Dereferer.py')
-rw-r--r-- | pyload/plugins/crypter/Dereferer.py | 3 |
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) |