Add https_proxy to internal error message

This commit is contained in:
Chris Mayo 2021-12-13 19:25:23 +00:00
parent a60648e348
commit 35ecb7e639

View file

@ -105,7 +105,7 @@ def print_env_info(key, out=stderr):
def print_proxy_info(out=stderr):
"""Print proxy info."""
for key in ("http_proxy", "no_proxy"):
for key in ("http_proxy", "https_proxy", "no_proxy"):
print_env_info(key, out=out)