diff options
Diffstat (limited to 'module/plugins/hoster/LolabitsEs.py')
-rw-r--r-- | module/plugins/hoster/LolabitsEs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/hoster/LolabitsEs.py b/module/plugins/hoster/LolabitsEs.py index 040bd70e7..18c845d8e 100644 --- a/module/plugins/hoster/LolabitsEs.py +++ b/module/plugins/hoster/LolabitsEs.py @@ -7,12 +7,13 @@ from module.utils import html_unescape class LolabitsEs(SimpleHoster): - __name = "LolabitsEs" + __name__ = "LolabitsEs" __type__ = "hoster" __version__ = "0.03" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?lolabits\.es/.+' + __config__ = [("activated", "bool", "Activated", True)] __description__ = """Lolabits.es hoster plugin""" __license__ = "GPLv3" |