mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-17 21:01:00 +00:00
Print the noproxy variable in system info string
This commit is contained in:
parent
3f80123fd6
commit
d666e63d19
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ def print_app_info (out=stderr):
|
|||
print >> out, configuration.App
|
||||
print >> out, _("Python %(version)s on %(platform)s") % \
|
||||
{"version": sys.version, "platform": sys.platform}
|
||||
for key in ("LC_ALL", "LC_MESSAGES", "http_proxy", "ftp_proxy"):
|
||||
for key in ("LC_ALL", "LC_MESSAGES", "http_proxy", "ftp_proxy", "no_proxy"):
|
||||
value = os.getenv(key)
|
||||
if value is not None:
|
||||
print >> out, key, "=", repr(value)
|
||||
|
|
|
|||
Loading…
Reference in a new issue