diff options
author | 2015-02-16 22:38:45 +0100 | |
---|---|---|
committer | 2015-02-16 22:38:45 +0100 | |
commit | 270c1ee85edcd1e9e10511833b422d93dfca192a (patch) | |
tree | eb846081ba3ec09721879ee237016b26d19c3c2f /pyload/plugin/hoster/XHamsterCom.py | |
parent | Fix plugins to work on 0.4.10 (diff) | |
download | pyload-270c1ee85edcd1e9e10511833b422d93dfca192a.tar.xz |
Diffstat (limited to 'pyload/plugin/hoster/XHamsterCom.py')
-rw-r--r-- | pyload/plugin/hoster/XHamsterCom.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pyload/plugin/hoster/XHamsterCom.py b/pyload/plugin/hoster/XHamsterCom.py index 92340152f..e1b0d8c32 100644 --- a/pyload/plugin/hoster/XHamsterCom.py +++ b/pyload/plugin/hoster/XHamsterCom.py @@ -17,16 +17,16 @@ def clean_json(json_expr): class XHamsterCom(Hoster): - __name__ = "XHamsterCom" - __type__ = "hoster" - __version__ = "0.12" + __name = "XHamsterCom" + __type = "hoster" + __version = "0.12" - __pattern__ = r'http://(?:www\.)?xhamster\.com/movies/.+' - __config__ = [("type", ".mp4;.flv", "Preferred type", ".mp4")] + __pattern = r'http://(?:www\.)?xhamster\.com/movies/.+' + __config = [("type", ".mp4;.flv", "Preferred type", ".mp4")] - __description__ = """XHamster.com hoster plugin""" - __license__ = "GPLv3" - __authors__ = [] + __description = """XHamster.com hoster plugin""" + __license = "GPLv3" + __authors = [] def process(self, pyfile): |