diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-23 21:27:57 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-23 21:27:57 +0200 |
commit | b2f0688a85bdef4332aa3652b98cdf329e0d807d (patch) | |
tree | 8510e6f4680e638bc9bd5fac95595a54309257ff /module/plugins | |
parent | Merge pull request #1533 from frederikmoellers/stable (diff) | |
parent | Update/Fix GamefrontCom hoster plugin (diff) | |
download | pyload-b2f0688a85bdef4332aa3652b98cdf329e0d807d.tar.xz |
Merge pull request #1534 from frederikmoellers/stable
Update/Fix GamefrontCom hoster plugin
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/hoster/GamefrontCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/GamefrontCom.py b/module/plugins/hoster/GamefrontCom.py index 590a85ee8..f987a371a 100644 --- a/module/plugins/hoster/GamefrontCom.py +++ b/module/plugins/hoster/GamefrontCom.py @@ -6,7 +6,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class GamefrontCom(SimpleHoster): __name__ = "GamefrontCom" __type__ = "hoster" - __version__ = "0.07" + __version__ = "0.08" __pattern__ = r'http://(?:www\.)?gamefront\.com/files/(?P<ID>\d+)' @@ -15,7 +15,7 @@ class GamefrontCom(SimpleHoster): __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] - NAME_PATTERN = r'>File Name:</dt>\s*<dd>(?P<N>.+?)<' + NAME_PATTERN = r'<title>(?P<N>.+?) \| Game Front</title>' SIZE_PATTERN = r'>File Size:</dt>\s*<dd>(?P<S>[\d.,]+) (?P<U>[\w^_]+)' OFFLINE_PATTERN = r'<p>File not found' |