diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-28 16:52:10 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-28 16:52:10 +0100 |
commit | 34984dae733c3f3d47b41a0acfba3724d53c65a1 (patch) | |
tree | c8d970f64dacfc64cb72bf82c85d7467c99f7264 /module/plugins/crypter/HoerbuchIn.py | |
parent | Update plugins to last changes (diff) | |
download | pyload-34984dae733c3f3d47b41a0acfba3724d53c65a1.tar.xz |
Code cosmetics: plugin class attributes
Diffstat (limited to 'module/plugins/crypter/HoerbuchIn.py')
-rw-r--r-- | module/plugins/crypter/HoerbuchIn.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/module/plugins/crypter/HoerbuchIn.py b/module/plugins/crypter/HoerbuchIn.py index c943ffc29..ed4adef58 100644 --- a/module/plugins/crypter/HoerbuchIn.py +++ b/module/plugins/crypter/HoerbuchIn.py @@ -8,8 +8,8 @@ from module.plugins.Crypter import Crypter class HoerbuchIn(Crypter): - __name__ = "HoerbuchIn" - __type__ = "crypter" + __name__ = "HoerbuchIn" + __type__ = "crypter" __version__ = "0.6" __pattern__ = r'http://(?:www\.)?hoerbuch\.in/(wp/horbucher/\d+/.+/|tp/out\.php\?.+|protection/folder_\d+\.html)' @@ -17,9 +17,9 @@ class HoerbuchIn(Crypter): ("subfolder_per_package", "bool", "Create a subfolder for each package", True)] __description__ = """Hoerbuch.in decrypter plugin""" - __license__ = "GPLv3" - __authors__ = [("spoob", "spoob@pyload.org"), - ("mkaay", "mkaay@mkaay.de")] + __license__ = "GPLv3" + __authors__ = [("spoob", "spoob@pyload.org"), + ("mkaay", "mkaay@mkaay.de")] article = re.compile("http://(?:www\.)?hoerbuch\.in/wp/horbucher/\d+/.+/") |