diff options
Diffstat (limited to 'pyload/plugin/hoster/FastshareCz.py')
-rw-r--r-- | pyload/plugin/hoster/FastshareCz.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pyload/plugin/hoster/FastshareCz.py b/pyload/plugin/hoster/FastshareCz.py index 4c69e0e81..7479e6414 100644 --- a/pyload/plugin/hoster/FastshareCz.py +++ b/pyload/plugin/hoster/FastshareCz.py @@ -8,15 +8,15 @@ from pyload.plugin.internal.SimpleHoster import SimpleHoster, create_getInfo class FastshareCz(SimpleHoster): - __name = "FastshareCz" - __type = "hoster" - __version = "0.25" + __name__ = "FastshareCz" + __type__ = "hoster" + __version__ = "0.25" - __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 = [("#.*", "")] |