summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/hoster/MegaFilesSe.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/hoster/MegaFilesSe.py')
-rw-r--r--pyload/plugins/hoster/MegaFilesSe.py14
1 files changed, 4 insertions, 10 deletions
diff --git a/pyload/plugins/hoster/MegaFilesSe.py b/pyload/plugins/hoster/MegaFilesSe.py
index 67086b068..e5b10f6e1 100644
--- a/pyload/plugins/hoster/MegaFilesSe.py
+++ b/pyload/plugins/hoster/MegaFilesSe.py
@@ -1,23 +1,17 @@
# -*- coding: utf-8 -*-
-from pyload.plugins.internal.XFSPHoster import XFSPHoster, create_getInfo
+from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
-class MegaFilesSe(XFSPHoster):
+class MegaFilesSe(DeadHoster):
__name__ = "MegaFilesSe"
__type__ = "hoster"
- __version__ = "0.01"
+ __version__ = "0.02"
__pattern__ = r'http://(?:www\.)?megafiles\.se/\w{12}'
__description__ = """MegaFiles.se hoster plugin"""
- __author_name__ = "t4skforce"
- __author_mail__ = "t4skforce1337[AT]gmail[DOT]com"
-
- HOSTER_NAME = "megafiles.se"
-
- OFFLINE_PATTERN = r'><font[^>]*>File Not Found'
- FILE_NAME_PATTERN = r'<div[^>]+>\s*<b>(?P<N>[^<]+)</b>\s*</div>'
+ __authors__ = [("t4skforce", "t4skforce1337[AT]gmail[DOT]com")]
getInfo = create_getInfo(MegaFilesSe)