diff options
Diffstat (limited to 'module')
| -rw-r--r-- | module/plugins/hoster/RarefileNet.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/module/plugins/hoster/RarefileNet.py b/module/plugins/hoster/RarefileNet.py index 8c6ec43a2..987028c8f 100644 --- a/module/plugins/hoster/RarefileNet.py +++ b/module/plugins/hoster/RarefileNet.py @@ -8,7 +8,7 @@ from module.plugins.internal.XFSHoster import XFSHoster, create_getInfo  class RarefileNet(XFSHoster):      __name__    = "RarefileNet"      __type__    = "hoster" -    __version__ = "0.07" +    __version__ = "0.08"      __pattern__ = r'http://(?:www\.)?rarefile\.net/\w{12}' @@ -19,6 +19,9 @@ class RarefileNet(XFSHoster):      HOSTER_DOMAIN = "rarefile.net" +    NAME_PATTERN = r'<font color="red">(?P<N>.+?)<' +    SIZE_PATTERN = r'>Size : (?P<S>[\d.,]+) (?P<U>[\w^_]+)' +      LINK_PATTERN = r'<a href="(?P<link>[^"]+)">(?P=link)</a>' | 
