Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix style error
  • Loading branch information
arrownj committed Jul 27, 2020
commit 4d2829ae2d495a846b76a037a26efe81263ab6f9
2 changes: 1 addition & 1 deletion src/azure-cli/azure/cli/command_modules/vm/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -1231,7 +1231,7 @@ def update_vm(cmd, resource_group_name, vm_name, os_disk=None, disk_caching=None
if vm and vm.storage_profile and vm.storage_profile.image_reference and vm.storage_profile.image_reference.id:
aux_subscriptions = _parse_aux_subscriptions(vm.storage_profile.image_reference.id)
client = _compute_client_factory(cmd.cli_ctx, aux_subscriptions=aux_subscriptions)
return sdk_no_wait(no_wait, client.virtual_machines.create_or_update,resource_group_name, vm_name, **kwargs)
return sdk_no_wait(no_wait, client.virtual_machines.create_or_update, resource_group_name, vm_name, **kwargs)
# endregion


Expand Down