diff options
author | 2015-10-23 04:32:27 +0200 | |
---|---|---|
committer | 2015-10-23 04:32:27 +0200 | |
commit | 3758f5e1dfccc70e4bb733e4e6a5932967bbf787 (patch) | |
tree | ec63a2793dcb45f0ab99332c0155572e3c62e129 /module/plugins/hoster/SafesharingEu.py | |
parent | [SimpleCrypter] check_errors (diff) | |
download | pyload-3758f5e1dfccc70e4bb733e4e6a5932967bbf787.tar.xz |
Fix XFS plugins
Diffstat (limited to 'module/plugins/hoster/SafesharingEu.py')
-rw-r--r-- | module/plugins/hoster/SafesharingEu.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/hoster/SafesharingEu.py b/module/plugins/hoster/SafesharingEu.py index 73d458e24..62c7c21b9 100644 --- a/module/plugins/hoster/SafesharingEu.py +++ b/module/plugins/hoster/SafesharingEu.py @@ -6,7 +6,7 @@ from module.plugins.internal.XFSHoster import XFSHoster, create_getInfo class SafesharingEu(XFSHoster): __name__ = "SafesharingEu" __type__ = "hoster" - __version__ = "0.07" + __version__ = "0.08" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?safesharing\.eu/\w{12}' @@ -17,6 +17,8 @@ class SafesharingEu(XFSHoster): __authors__ = [("zapp-brannigan", "fuerst.reinje@web.de")] + PLUGIN_DOMAIN = "safesharing.eu" + ERROR_PATTERN = r'(?:<div class="alert alert-danger">)(.+?)(?:</div>)' |