From b1c375b6f20eed1c37cb99168866241e7a6b6fe7 Mon Sep 17 00:00:00 2001 From: Guillaume Bougard Date: Mon, 27 May 2024 10:40:23 +0200 Subject: [PATCH] fix: code space cleanup --- lib/GLPI/Agent/HTTP/Client.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/GLPI/Agent/HTTP/Client.pm b/lib/GLPI/Agent/HTTP/Client.pm index 8c13a9e69..6efc6f0ea 100644 --- a/lib/GLPI/Agent/HTTP/Client.pm +++ b/lib/GLPI/Agent/HTTP/Client.pm @@ -62,7 +62,7 @@ sub new { my $proxy = $params{proxy} || $config->{'proxy'}; if ($proxy) { $self->{ua}->proxy(['http', 'https'], $proxy); - } else { + } else { $self->{ua}->env_proxy(); }