aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/dropbox.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-10-01 23:09:25 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-10-01 23:19:56 +0200
commit18937a50a4d453d48b018b9e68f40cd6d0959e31 (patch)
treec1782214fee59766d95fd3528f066c29f441b855 /youtube_dl/extractor/dropbox.py
parent9e77c60c9ad83c70e0f943404507fb2d2486113a (diff)
downloadyoutube-dl-18937a50a4d453d48b018b9e68f40cd6d0959e31.zip
youtube-dl-18937a50a4d453d48b018b9e68f40cd6d0959e31.tar.gz
youtube-dl-18937a50a4d453d48b018b9e68f40cd6d0959e31.tar.bz2
[dropbox] Fix the video url query (fixes #3868)
Previously it would convert urls without a query into 'something.mp4&dl=1'
Diffstat (limited to 'youtube_dl/extractor/dropbox.py')
-rw-r--r--youtube_dl/extractor/dropbox.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/youtube_dl/extractor/dropbox.py b/youtube_dl/extractor/dropbox.py
index 817a9bd..5f24ac7 100644
--- a/youtube_dl/extractor/dropbox.py
+++ b/youtube_dl/extractor/dropbox.py
@@ -29,9 +29,8 @@ class DropboxIE(InfoExtractor):
video_id = mobj.group('id')
fn = compat_urllib_parse_unquote(url_basename(url))
title = os.path.splitext(fn)[0]
- video_url = (
- re.sub(r'[?&]dl=0', '', url) +
- ('?' if '?' in url else '&') + 'dl=1')
+ video_url = re.sub(r'[?&]dl=0', '', url)
+ video_url += ('?' if '?' not in video_url else '&') + 'dl=1'
return {
'id': video_id,