diff options
Diffstat (limited to 'pyload/plugins/hoster/FastshareCz.py')
-rw-r--r-- | pyload/plugins/hoster/FastshareCz.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pyload/plugins/hoster/FastshareCz.py b/pyload/plugins/hoster/FastshareCz.py index 11ae4ca42..4e2da7f76 100644 --- a/pyload/plugins/hoster/FastshareCz.py +++ b/pyload/plugins/hoster/FastshareCz.py @@ -8,15 +8,15 @@ from pyload.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class FastshareCz(SimpleHoster): - __name__ = "FastshareCz" - __type__ = "hoster" - __version__ = "0.24" + __name = "FastshareCz" + __type = "hoster" + __version = "0.24" - __pattern__ = r'http://(?:www\.)?fastshare\.cz/\d+/.+' + __pattern = r'http://(?:www\.)?fastshare\.cz/\d+/.+' - __description__ = """FastShare.cz hoster plugin""" - __license__ = "GPLv3" - __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] + __description = """FastShare.cz hoster plugin""" + __license = "GPLv3" + __authors = [("Walter Purcaro", "vuolter@gmail.com")] URL_REPLACEMENTS = [("#.*", "")] |