aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/generic.py
diff options
context:
space:
mode:
authorPierre Rudloff <contact@rudloff.pro>2013-08-28 12:10:34 +0200
committerPierre Rudloff <contact@rudloff.pro>2013-08-28 12:10:34 +0200
commitb7f89fe692109368e35b4a0723e1044ed6b51e1e (patch)
tree3185112c5cb7d688e77b43f73e6cfe0d3dabdad4 /youtube_dl/extractor/generic.py
parent1301a0dd426a88ed39d38ac6ad04e9000c7811a4 (diff)
parentae3531adf926998d42d1fb52453491c85e33b5f0 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'youtube_dl/extractor/generic.py')
-rw-r--r--youtube_dl/extractor/generic.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py
index d034a11bb..bfc9bff49 100644
--- a/youtube_dl/extractor/generic.py
+++ b/youtube_dl/extractor/generic.py
@@ -166,7 +166,12 @@ class GenericIE(InfoExtractor):
if video_url.startswith('//'):
video_url = compat_urllib_parse_urlparse(url).scheme + ':' + video_url
if '://' not in video_url:
- video_url = url + ('' if url.endswith('/') else '/') + video_url
+ up = compat_urllib_parse_urlparse(url)
+ if video_url.startswith('/'):
+ video_url = up.scheme + '://' + up.netloc + video_url
+ else: # relative path
+ video_url = (up.scheme + '://' + up.netloc +
+ up.path.rpartition('/')[0] + '/' + video_url)
video_id = os.path.basename(video_url)
# here's a fun little line of code for you: