aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/downloader/__init__.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-06-04 22:27:29 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2015-06-04 22:27:29 +0800
commit423d2be5f8c5e70d202ddfa63f3e5365e6afe823 (patch)
tree73564c9459fb33795478fff279f3b7e2e54fd042 /youtube_dl/downloader/__init__.py
parent453a1617aac6e8000ed947cad7d88817c5740ede (diff)
downloadyoutube-dl-423d2be5f8c5e70d202ddfa63f3e5365e6afe823.tar.xz
[downloader/dash] Rename the protocol
'http_dash_segments' looks more like a protocol name than 'dash_segments'
Diffstat (limited to 'youtube_dl/downloader/__init__.py')
-rw-r--r--youtube_dl/downloader/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/downloader/__init__.py b/youtube_dl/downloader/__init__.py
index 1b618ab54..dccc59212 100644
--- a/youtube_dl/downloader/__init__.py
+++ b/youtube_dl/downloader/__init__.py
@@ -21,7 +21,7 @@ PROTOCOL_MAP = {
'mms': RtspFD,
'rtsp': RtspFD,
'f4m': F4mFD,
- 'dash_segments': DashSegmentsFD,
+ 'http_dash_segments': DashSegmentsFD,
}