aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-01-17 22:10:03 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-01-17 22:10:03 +0800
commitb39eab7f94328f2aec7e6636f1df7b62803e1811 (patch)
tree94c5bbf3d5e7a064c3f463ca678405b1708f3f18
parent855f90fa6f348d8128d9c581db4756e26db02944 (diff)
parente5a66240c0ddb326b3f885cc29b6f00058481739 (diff)
downloadyoutube-dl-b39eab7f94328f2aec7e6636f1df7b62803e1811.tar.xz
Merge pull request #8262 from jwilk/https-everywhere
[ustream] Use HTTPS for GitHub URL
-rw-r--r--youtube_dl/extractor/ustream.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ustream.py b/youtube_dl/extractor/ustream.py
index 73b05ecab..b5fe753d7 100644
--- a/youtube_dl/extractor/ustream.py
+++ b/youtube_dl/extractor/ustream.py
@@ -47,7 +47,7 @@ class UstreamIE(InfoExtractor):
m = re.match(self._VALID_URL, url)
video_id = m.group('id')
- # some sites use this embed format (see: http://github.com/rg3/youtube-dl/issues/2990)
+ # some sites use this embed format (see: https://github.com/rg3/youtube-dl/issues/2990)
if m.group('type') == 'embed/recorded':
video_id = m.group('id')
desktop_url = 'http://www.ustream.tv/recorded/' + video_id