Romain dartigues fixes (#29169)

* cloud: azure: fix typo introduced in commit 16d23e9

The commit "Add reference to VNET resource group (#26052)"
removed an used variable.

* network: aos: error hint never shown
This commit is contained in:
Toshio Kuratomi
2017-09-09 16:20:53 -07:00
committed by GitHub
parent fcad4f38b4
commit 6797221107
2 changed files with 4 additions and 5 deletions

View File

@@ -1431,7 +1431,7 @@ class AzureRMVirtualMachine(AzureRMModuleBase):
try:
self.network_client.virtual_networks.list(virtual_network_resource_group, self.virtual_network_name)
virtual_network_name = self.virtual_network_name
except CloudError:
except CloudError as exc:
self.fail("Error: fetching virtual network {0} - {1}".format(self.virtual_network_name, str(exc)))
else: