diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-27 16:04:08 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-27 16:04:08 +0100 |
commit | b1a650dfc65e65baec8c1936351550e13144265b (patch) | |
tree | 2d88f65c45418be80564892830108096659ba3d6 | |
parent | Merge pull request #2115 from GammaC0de/patch-6 (diff) | |
parent | Fix error checking regex (diff) | |
download | pyload-b1a650dfc65e65baec8c1936351550e13144265b.tar.xz |
Merge pull request #2123 from joberreiter/patch-5
[hoster/ShareonlineBiz] Fix error checking regex
-rw-r--r-- | module/plugins/hoster/ShareonlineBiz.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/ShareonlineBiz.py b/module/plugins/hoster/ShareonlineBiz.py index 68fc22171..6380fd4c0 100644 --- a/module/plugins/hoster/ShareonlineBiz.py +++ b/module/plugins/hoster/ShareonlineBiz.py @@ -12,7 +12,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class ShareonlineBiz(SimpleHoster): __name__ = "ShareonlineBiz" __type__ = "hoster" - __version__ = "0.61" + __version__ = "0.62" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?(share-online\.biz|egoshare\.com)/(download\.php\?id=|dl/)(?P<ID>\w+)' @@ -146,7 +146,7 @@ class ShareonlineBiz(SimpleHoster): def check_errors(self): - m = re.search(r"/failure/(.*?)/1", self.req.lastEffectiveURL) + m = re.search(r"/failure/(.*?)/", self.req.lastEffectiveURL) if m is None: self.info.pop('error', None) return |