diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-04-11 12:21:37 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-11 12:21:37 +0200 |
commit | 02e1638896c073f5d1c904a3e611d09298df79fa (patch) | |
tree | baef9d74b16b4a3792304b6d89447b1e4a548867 /module/plugins/hoster/RarefileNet.py | |
parent | Use re.match for __pattern__ matches instead re.search (diff) | |
download | pyload-02e1638896c073f5d1c904a3e611d09298df79fa.tar.xz |
Fix HOSTER_NAME in XFileSharingPro plugins
Merges vuolter/pyload@f20b998
Diffstat (limited to 'module/plugins/hoster/RarefileNet.py')
-rw-r--r-- | module/plugins/hoster/RarefileNet.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/hoster/RarefileNet.py b/module/plugins/hoster/RarefileNet.py index aff92f799..3c887e66c 100644 --- a/module/plugins/hoster/RarefileNet.py +++ b/module/plugins/hoster/RarefileNet.py @@ -15,10 +15,11 @@ class RarefileNet(XFileSharingPro): __author_name__ = "zoidberg" __author_mail__ = "zoidberg@mujmail.cz" + HOSTER_NAME = "rarefile.net" + FILE_NAME_PATTERN = r'<td><font color="red">(?P<N>.*?)</font></td>' FILE_SIZE_PATTERN = r'<td>Size : (?P<S>.+?) ' DIRECT_LINK_PATTERN = r'<a href="(?P<link>[^"]+)">(?P=link)</a>' - HOSTER_NAME = "rarefile.net" def setup(self): self.resumeDownload = self.multiDL = self.premium |