diff options
author | stickell <l.stickell@yahoo.it> | 2014-07-11 11:29:57 +0200 |
---|---|---|
committer | stickell <l.stickell@yahoo.it> | 2014-07-11 11:29:57 +0200 |
commit | d211a0748a235562aa5be1b2f86679146669abb8 (patch) | |
tree | b6521ec7efbdd8a8619dee2a53681ec22eb3f7f4 /module/plugins/hoster/LoadTo.py | |
parent | [CaptchaService] Remove SolveMedia __init__ (diff) | |
download | pyload-d211a0748a235562aa5be1b2f86679146669abb8.tar.xz |
[LoadTo] renamed pattern
Diffstat (limited to 'module/plugins/hoster/LoadTo.py')
-rw-r--r-- | module/plugins/hoster/LoadTo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/LoadTo.py b/module/plugins/hoster/LoadTo.py index b5f0e4109..6cf633636 100644 --- a/module/plugins/hoster/LoadTo.py +++ b/module/plugins/hoster/LoadTo.py @@ -28,12 +28,12 @@ class LoadTo(SimpleHoster): __name__ = "LoadTo" __type__ = "hoster" __pattern__ = r'http://(?:www\.)?load\.to/\w+' - __version__ = "0.14" + __version__ = "0.15" __description__ = """Load.to hoster plugin""" __author_name__ = ("halfman", "stickell") __author_mail__ = ("Pulpan3@gmail.com", "l.stickell@yahoo.it") - FILE_INFO_PATTERN = r'<head><title>(?P<N>.+) \/\/ Load.to</title>' + FILE_NAME_PATTERN = r'<head><title>(?P<N>.+) \/\/ Load.to</title>' FILE_SIZE_PATTERN = r'<a [^>]+>(?P<Z>.+)</a></h3>\s*Size: (?P<S>.*) (?P<U>[kKmMgG]?i?[bB])' OFFLINE_PATTERN = r'Can\'t find file\. Please check URL' |