diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-17 23:49:18 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-17 23:49:18 +0100 |
commit | f26faa7a68f645f8664874f4ff361caf8503d651 (patch) | |
tree | 64316a82d887949cca724a6d2c685babb6361e73 /module/plugins/hoster/SendmywayCom.py | |
parent | [XFSHoster] Improve NAME_PATTERN & SIZE_PATTERN (diff) | |
download | pyload-f26faa7a68f645f8664874f4ff361caf8503d651.tar.xz |
Update plugins after XFSHoster changes
Diffstat (limited to 'module/plugins/hoster/SendmywayCom.py')
-rw-r--r-- | module/plugins/hoster/SendmywayCom.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/module/plugins/hoster/SendmywayCom.py b/module/plugins/hoster/SendmywayCom.py index 4254922fc..637098b88 100644 --- a/module/plugins/hoster/SendmywayCom.py +++ b/module/plugins/hoster/SendmywayCom.py @@ -10,15 +10,12 @@ class SendmywayCom(XFSHoster): __pattern__ = r'http://(?:www\.)?sendmyway\.com/\w{12}' - __description__ = """SendMyWay hoster plugin""" + __description__ = """SendMyWay.com hoster plugin""" __license__ = "GPLv3" __authors__ = [("zoidberg", "zoidberg@mujmail.cz")] HOSTER_DOMAIN = "sendmyway.com" - NAME_PATTERN = r'<p class="file-name" ><.*?>\s*(?P<N>.+)' - SIZE_PATTERN = r'<small>\((?P<S>\d+) bytes\)</small>' - getInfo = create_getInfo(SendmywayCom) |