aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/common.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-10-24 15:34:19 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-10-24 15:34:19 +0200
commit1ede5b2481a271fcfd0e179a494ef84cca2576b7 (patch)
tree6e65d9ff725fd5130aa1e6aae17bd20a5dd9c6a4 /youtube_dl/extractor/common.py
parent964ae0a1228c9a0853e2b9142452d66e7333bf8c (diff)
downloadyoutube-dl-1ede5b2481a271fcfd0e179a494ef84cca2576b7.tar.xz
[glide] Simplify
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r--youtube_dl/extractor/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index e8366f7f9..8849208de 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -618,7 +618,7 @@ class InfoExtractor(object):
formats.sort(key=_formats_key)
def http_scheme(self):
- """ Either "https:" or "https:", depending on the user's preferences """
+ """ Either "http:" or "https:", depending on the user's preferences """
return (
'http:'
if self._downloader.params.get('prefer_insecure', False)