diff options
author | Stefano <l.stickell@yahoo.it> | 2013-12-29 17:15:20 +0100 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-21 16:47:34 +0200 |
commit | 6a263b4fd0ece497bdff4a96abc8891ebebea7cd (patch) | |
tree | 528a6982ed40be453a7a19aac3a49e65dbed4f84 | |
parent | Dailymotion: Fully rewritten (diff) | |
download | pyload-6a263b4fd0ece497bdff4a96abc8891ebebea7cd.tar.xz |
Keep2share: fixed #445
(cherry picked from commit 3429f43adf22b6e4c5e2b7e02e901904e937466b)
-rw-r--r-- | pyload/plugins/hoster/Keep2shareCC.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/hoster/Keep2shareCC.py b/pyload/plugins/hoster/Keep2shareCC.py index 0985f29f0..29e40bc7f 100644 --- a/pyload/plugins/hoster/Keep2shareCC.py +++ b/pyload/plugins/hoster/Keep2shareCC.py @@ -28,14 +28,14 @@ class Keep2shareCC(SimpleHoster): __name__ = "Keep2shareCC" __type__ = "hoster" __pattern__ = r"https?://(?:www\.)?(keep2share|k2s|keep2s)\.cc/file/(?P<ID>\w+)" - __version__ = "0.06" + __version__ = "0.07" __description__ = """Keep2share.cc hoster plugin""" __author_name__ = ("stickell") __author_mail__ = ("l.stickell@yahoo.it") FILE_NAME_PATTERN = r'File: <span>(?P<N>.+)</span>' FILE_SIZE_PATTERN = r'Size: (?P<S>[^<]+)</div>' - FILE_OFFLINE_PATTERN = r'File not found or deleted|Sorry, this file is blocked or deleted' + FILE_OFFLINE_PATTERN = r'File not found or deleted|Sorry, this file is blocked or deleted|Error 404' DIRECT_LINK_PATTERN = r'To download this file with slow speed, use <a href="([^"]+)">this link</a>' WAIT_PATTERN = r'Please wait ([\d:]+) to download this file' |