diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-12-17 18:44:53 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-12-17 18:49:55 +0700 |
commit | b0c65c677f5298df8653df1e382b406bea420ba3 (patch) | |
tree | 4c3c654a572b305b8528adee10a9ce78b4e25146 /youtube_dl/utils.py | |
parent | 594601f54570b8e79606002b6342dd5fcdc1f133 (diff) |
[utils] Improve urljoin
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 694e9a600..528d87bb9 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -1703,9 +1703,9 @@ def base_url(url): def urljoin(base, path): if not isinstance(path, compat_str) or not path: return None - if re.match(r'https?://', path): + if re.match(r'^(?:https?:)?//', path): return path - if not isinstance(base, compat_str) or not re.match(r'https?://', base): + if not isinstance(base, compat_str) or not re.match(r'^(?:https?:)?//', base): return None return compat_urlparse.urljoin(base, path) |