aboutsummaryrefslogtreecommitdiff
path: root/yt_dlp/compat/urllib/request.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/compat/urllib/request.py')
-rw-r--r--yt_dlp/compat/urllib/request.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/compat/urllib/request.py b/yt_dlp/compat/urllib/request.py
index ff63b2f0e..ad9fa83c8 100644
--- a/yt_dlp/compat/urllib/request.py
+++ b/yt_dlp/compat/urllib/request.py
@@ -10,10 +10,10 @@ del passthrough_module
from .. import compat_os_name
if compat_os_name == 'nt':
- # On older python versions, proxies are extracted from Windows registry erroneously. [1]
+ # On older Python versions, proxies are extracted from Windows registry erroneously. [1]
# If the https proxy in the registry does not have a scheme, urllib will incorrectly add https:// to it. [2]
# It is unlikely that the user has actually set it to be https, so we should be fine to safely downgrade
- # it to http on these older python versions to avoid issues
+ # it to http on these older Python versions to avoid issues
# This also applies for ftp proxy type, as ftp:// proxy scheme is not supported.
# 1: https://github.com/python/cpython/issues/86793
# 2: https://github.com/python/cpython/blob/51f1ae5ceb0673316c4e4b0175384e892e33cc6e/Lib/urllib/request.py#L2683-L2698