diff options
Diffstat (limited to 'pyload/plugins/hoster/ZShareNet.py')
-rw-r--r-- | pyload/plugins/hoster/ZShareNet.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pyload/plugins/hoster/ZShareNet.py b/pyload/plugins/hoster/ZShareNet.py index 663377102..5392bfd94 100644 --- a/pyload/plugins/hoster/ZShareNet.py +++ b/pyload/plugins/hoster/ZShareNet.py @@ -4,15 +4,15 @@ from pyload.plugins.internal.DeadHoster import DeadHoster, create_getInfo class ZShareNet(DeadHoster): - __name__ = "ZShareNet" - __type__ = "hoster" - __version__ = "0.21" + __name = "ZShareNet" + __type = "hoster" + __version = "0.21" - __pattern__ = r'https?://(?:ww[2w]\.)?zshares?\.net/.+' + __pattern = r'https?://(?:ww[2w]\.)?zshares?\.net/.+' - __description__ = """ZShare.net hoster plugin""" - __license__ = "GPLv3" - __authors__ = [("espes", None), + __description = """ZShare.net hoster plugin""" + __license = "GPLv3" + __authors = [("espes", None), ("Cptn Sandwich", None)] |