diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2015-06-04 22:27:29 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2015-06-04 22:27:29 +0800 |
commit | 423d2be5f8c5e70d202ddfa63f3e5365e6afe823 (patch) | |
tree | 73564c9459fb33795478fff279f3b7e2e54fd042 /youtube_dl/downloader | |
parent | 453a1617aac6e8000ed947cad7d88817c5740ede (diff) |
[downloader/dash] Rename the protocol
'http_dash_segments' looks more like a protocol name than
'dash_segments'
Diffstat (limited to 'youtube_dl/downloader')
-rw-r--r-- | youtube_dl/downloader/__init__.py | 2 |
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, } |