From ea23bb0568b2823b78afff58e48ffa214a1d3822 Mon Sep 17 00:00:00 2001 From: Mike Foley Date: Wed, 18 Jan 2017 15:33:50 -0500 Subject: [PATCH] Update VMware.VMEncryption.psm1 Added missing parenthesis at line 277 position 35. --- Modules/VMware.VMEncryption/VMware.VMEncryption.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/VMware.VMEncryption/VMware.VMEncryption.psm1 b/Modules/VMware.VMEncryption/VMware.VMEncryption.psm1 index 5252f96..c350955 100644 --- a/Modules/VMware.VMEncryption/VMware.VMEncryption.psm1 +++ b/Modules/VMware.VMEncryption/VMware.VMEncryption.psm1 @@ -274,7 +274,7 @@ Function Set-vMotionEncryptionConfig { [Parameter(Mandatory=$True,ValueFromPipeline=$True,ValueFromPipelinebyPropertyName=$True)] [VMware.VimAutomation.ViCore.Types.V1.Inventory.VirtualMachine]$VM, - [Parameter(Mandatory=$True] + [Parameter(Mandatory=$True)] [ValidateSet("disabled", "opportunistic", "required")] [String]$Encryption )