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/RapidfileshareNetFolder.py | |
parent | Update plugins to last changes (diff) | |
download | pyload-34984dae733c3f3d47b41a0acfba3724d53c65a1.tar.xz |
Code cosmetics: plugin class attributes
Diffstat (limited to 'module/plugins/crypter/RapidfileshareNetFolder.py')
-rw-r--r-- | module/plugins/crypter/RapidfileshareNetFolder.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/crypter/RapidfileshareNetFolder.py b/module/plugins/crypter/RapidfileshareNetFolder.py index 437beae85..43a3e34dd 100644 --- a/module/plugins/crypter/RapidfileshareNetFolder.py +++ b/module/plugins/crypter/RapidfileshareNetFolder.py @@ -4,8 +4,8 @@ from module.plugins.internal.XFSPCrypter import XFSPCrypter class RapidfileshareNetFolder(XFSPCrypter): - __name__ = "RapidfileshareNetFolder" - __type__ = "crypter" + __name__ = "RapidfileshareNetFolder" + __type__ = "crypter" __version__ = "0.02" __pattern__ = r'http://(?:www\.)?rapidfileshare\.net/users/\w+/\d+/\w+' @@ -13,8 +13,8 @@ class RapidfileshareNetFolder(XFSPCrypter): ("subfolder_per_package", "bool", "Create a subfolder for each package", True)] __description__ = """Rapidfileshare.net folder decrypter plugin""" - __license__ = "GPLv3" - __authors__ = [("guidobelix", "guidobelix@hotmail.it")] + __license__ = "GPLv3" + __authors__ = [("guidobelix", "guidobelix@hotmail.it")] HOSTER_NAME = "rapidfileshare.net" |