From 62eeea83da073c56945f32402945aa7cc7851edb Mon Sep 17 00:00:00 2001 From: Vignesh <62500639+vigneshmanick@users.noreply.github.com> Date: Mon, 28 Jul 2025 14:09:01 +0200 Subject: [PATCH] Check for both upper and lowercase values --- osc/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/connection.py b/osc/connection.py index 788cd30a..5bd0214e 100644 --- a/osc/connection.py +++ b/osc/connection.py @@ -91,7 +91,7 @@ def enable_http_debug(config): def get_proxy_manager(env): - proxy_url = os.environ.get(env, None) + proxy_url = os.environ.get(env.upper(), None) or os.environ.get(env.lower(), None) if not proxy_url: return