diff options
Diffstat (limited to 'module/plugins/hoster/MyvideoDe.py')
-rw-r--r-- | module/plugins/hoster/MyvideoDe.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/hoster/MyvideoDe.py b/module/plugins/hoster/MyvideoDe.py index be50ea760..5df1669b8 100644 --- a/module/plugins/hoster/MyvideoDe.py +++ b/module/plugins/hoster/MyvideoDe.py @@ -7,12 +7,13 @@ from module.utils import html_unescape class MyvideoDe(Hoster): - __name = "MyvideoDe" + __name__ = "MyvideoDe" __type__ = "hoster" __version__ = "0.92" __status__ = "testing" __pattern__ = r'http://(?:www\.)?myvideo\.de/watch/' + __config__ = [("activated", "bool", "Activated", True)] __description__ = """Myvideo.de hoster plugin""" __license__ = "GPLv3" |