From 9a8c57c198bf88c87872166caa35780f476c3b16 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Fri, 3 Oct 2014 09:01:44 +0200 Subject: [MovReelCom] Fixed LINK_PATTERN --- module/plugins/hoster/MovReelCom.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'module/plugins/hoster') diff --git a/module/plugins/hoster/MovReelCom.py b/module/plugins/hoster/MovReelCom.py index eef4e2580..fa5a2265a 100644 --- a/module/plugins/hoster/MovReelCom.py +++ b/module/plugins/hoster/MovReelCom.py @@ -6,7 +6,7 @@ from module.plugins.hoster.XFileSharingPro import XFileSharingPro, create_getInf class MovReelCom(XFileSharingPro): __name__ = "MovReelCom" __type__ = "hoster" - __version__ = "1.20" + __version__ = "1.21" __pattern__ = r'http://(?:www\.)?movreel\.com/\w{12}' @@ -17,9 +17,10 @@ class MovReelCom(XFileSharingPro): HOSTER_NAME = "movreel.com" - FILE_INFO_PATTERN = r'

(?P.+?) (?P[\d.]+) (?P..)

' - OFFLINE_PATTERN = r'File Not Found

' - LINK_PATTERN = r'Download Link' + FILE_NAME_PATTERN = r'Filename: (?P.+?)<' + FILE_SIZE_PATTERN = r'Size: (?P[\d.]+) (?P\w+)' + + LINK_PATTERN = r'Download Link' getInfo = create_getInfo(MovReelCom) -- cgit v1.2.3