From 6a776fc67cda56cd6f659317024c719667548bb9 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Wed, 15 Jan 2025 22:55:27 +0100 Subject: [PATCH] helpers.run.core.add_proxy_env_vars: fix variables (MR 2525) Looks like there was a missing comma when this was added initially. Caught this while reviewing the formatting patch. --- pmb/helpers/run_core.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pmb/helpers/run_core.py b/pmb/helpers/run_core.py index 5567d116..2d5bafd7 100644 --- a/pmb/helpers/run_core.py +++ b/pmb/helpers/run_core.py @@ -346,7 +346,8 @@ def add_proxy_env_vars(env: Env) -> None: "FTP_PROXY", "HTTPS_PROXY", "HTTP_PROXY", - "HTTP_PROXY_AUTHftp_proxy", + "HTTP_PROXY_AUTH", + "ftp_proxy", "http_proxy", "https_proxy", ]