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/hoster/CloudzerNet.py | |
parent | Update plugins to last changes (diff) | |
download | pyload-34984dae733c3f3d47b41a0acfba3724d53c65a1.tar.xz |
Code cosmetics: plugin class attributes
Diffstat (limited to 'module/plugins/hoster/CloudzerNet.py')
-rw-r--r-- | module/plugins/hoster/CloudzerNet.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/module/plugins/hoster/CloudzerNet.py b/module/plugins/hoster/CloudzerNet.py index 915437919..c5440391f 100644 --- a/module/plugins/hoster/CloudzerNet.py +++ b/module/plugins/hoster/CloudzerNet.py @@ -4,17 +4,17 @@ from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo class CloudzerNet(DeadHoster): - __name__ = "CloudzerNet" - __type__ = "hoster" + __name__ = "CloudzerNet" + __type__ = "hoster" __version__ = "0.05" __pattern__ = r'https?://(?:www\.)?(cloudzer\.net/file/|clz\.to/(file/)?)\w+' __description__ = """Cloudzer.net hoster plugin""" - __license__ = "GPLv3" - __authors__ = [("gs", "I-_-I-_-I@web.de"), - ("z00nx", "z00nx0@gmail.com"), - ("stickell", "l.stickell@yahoo.it")] + __license__ = "GPLv3" + __authors__ = [("gs", "I-_-I-_-I@web.de"), + ("z00nx", "z00nx0@gmail.com"), + ("stickell", "l.stickell@yahoo.it")] getInfo = create_getInfo(CloudzerNet) |