From 77a7a9b324fe6a45c12b2acda646bf07925679ba Mon Sep 17 00:00:00 2001 From: Gao Ruifeng Date: Tue, 4 Feb 2020 06:29:33 +0000 Subject: [PATCH] [Compute] Fix typo in error message --- src/azure-cli/azure/cli/command_modules/vm/custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index eb6742d331e..12c320916bf 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -1919,7 +1919,7 @@ def attach_unmanaged_data_disk(cmd, resource_group_name, vm_name, new=False, vhd DataDisk, DiskCreateOptionTypes, VirtualHardDisk = cmd.get_models( 'DataDisk', 'DiskCreateOptionTypes', 'VirtualHardDisk') if not new and not disk_name: - raise CLIError('Pleae provide the name of the existing disk to attach') + raise CLIError('Please provide the name of the existing disk to attach') create_option = DiskCreateOptionTypes.empty if new else DiskCreateOptionTypes.attach vm = get_vm(cmd, resource_group_name, vm_name)