diff options
author | 2014-10-28 16:52:10 +0100 | |
---|---|---|
committer | 2014-10-28 16:52:10 +0100 | |
commit | 34984dae733c3f3d47b41a0acfba3724d53c65a1 (patch) | |
tree | c8d970f64dacfc64cb72bf82c85d7467c99f7264 /module/plugins/crypter/MBLinkInfo.py | |
parent | Update plugins to last changes (diff) | |
download | pyload-34984dae733c3f3d47b41a0acfba3724d53c65a1.tar.xz |
Code cosmetics: plugin class attributes
Diffstat (limited to 'module/plugins/crypter/MBLinkInfo.py')
-rw-r--r-- | module/plugins/crypter/MBLinkInfo.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/module/plugins/crypter/MBLinkInfo.py b/module/plugins/crypter/MBLinkInfo.py index 38bbdfe9c..680aa49c0 100644 --- a/module/plugins/crypter/MBLinkInfo.py +++ b/module/plugins/crypter/MBLinkInfo.py @@ -4,14 +4,14 @@ from module.plugins.internal.DeadCrypter import DeadCrypter class MBLinkInfo(DeadCrypter): - __name__ = "MBLinkInfo" - __type__ = "crypter" + __name__ = "MBLinkInfo" + __type__ = "crypter" __version__ = "0.03" __pattern__ = r'http://(?:www\.)?mblink\.info/?\?id=(\d+)' __config__ = [] __description__ = """MBLink.info decrypter plugin""" - __license__ = "GPLv3" - __authors__ = [("Gummibaer", "Gummibaer@wiki-bierkiste.de"), - ("stickell", "l.stickell@yahoo.it")] + __license__ = "GPLv3" + __authors__ = [("Gummibaer", "Gummibaer@wiki-bierkiste.de"), + ("stickell", "l.stickell@yahoo.it")] |