From 3026e5eb153b14459ac8948e4cff317ab0a97121 Mon Sep 17 00:00:00 2001 From: Reid Wahl <30487349+nrwahl2@users.noreply.github.com> Date: Thu, 24 Aug 2017 03:48:37 -0500 Subject: [PATCH] Fixes #28584: modules/windows/win_get_url.ps1: Change -msg option to -message (#28585) --- lib/ansible/modules/windows/win_get_url.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/windows/win_get_url.ps1 b/lib/ansible/modules/windows/win_get_url.ps1 index bb615353b71..0dcde7d4cf9 100644 --- a/lib/ansible/modules/windows/win_get_url.ps1 +++ b/lib/ansible/modules/windows/win_get_url.ps1 @@ -43,7 +43,7 @@ $result = @{ # If skip_certificate_validation was specified, use validate_certs if ($skip_certificate_validation -ne $null) { - Add-DeprecationWarning -obj $result -msg "The parameter 'skip_vertificate_validation' is being replaced with 'validate_certs'" -version 2.8 + Add-DeprecationWarning -obj $result -message "The parameter 'skip_certificate_validation' is being replaced with 'validate_certs'" -version 2.8 $validate_certs = -not $skip_certificate_validation }