diff options
author | 2014-04-11 12:19:22 +0200 | |
---|---|---|
committer | 2014-04-21 17:20:46 +0200 | |
commit | 87733d5d1d3698a5f7e2708e1620173706ee1e37 (patch) | |
tree | 32f26ac0aa1364bc4cac64c985586023ca28be5b /pyload/plugins/hoster/BasePlugin.py | |
parent | Remove bad whitespaces (diff) | |
download | pyload-87733d5d1d3698a5f7e2708e1620173706ee1e37.tar.xz |
Use re.match for __pattern__ matches instead re.search
Merges vuolter/pyload@9117005
(cherry picked from commit 8c18c14ab56541aeae9123ee3b558b70aeabfd09)
Diffstat (limited to 'pyload/plugins/hoster/BasePlugin.py')
-rw-r--r-- | pyload/plugins/hoster/BasePlugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/hoster/BasePlugin.py b/pyload/plugins/hoster/BasePlugin.py index 2b8f7c848..375896580 100644 --- a/pyload/plugins/hoster/BasePlugin.py +++ b/pyload/plugins/hoster/BasePlugin.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- from urlparse import urlparse -from re import search +from re import match, search from urllib import unquote from pyload.plugins.Request import ResponseException @@ -83,7 +83,7 @@ class BasePlugin(Hoster): if 'location' in header: self.logDebug("Location: " + header['location']) - base = search(r'https?://[^/]+', url).group(0) + base = match(r'https?://[^/]+', url).group(0) if header['location'].startswith("http"): url = unquote(header['location']) elif header['location'].startswith("/"): |