Fix VMware capitalization

This commit is contained in:
Luke Sneeringer
2014-08-14 14:59:37 -04:00
parent c028b2fce8
commit c4825dbf6c
3 changed files with 8 additions and 8 deletions

View File

@@ -210,7 +210,7 @@ if __name__ == '__main__':
except Exception:
pass
# If any of the VMWare environment variables are set, they trump
# If any of the VMware environment variables are set, they trump
# the INI configuration.
if 'VMWARE_HOST' in os.environ:
auth_host = os.environ['VMWARE_HOST']
@@ -219,7 +219,7 @@ if __name__ == '__main__':
if 'VMWARE_PASSWORD' in os.environ:
auth_password = os.environ['VMWARE_PASSWORD']
# Create the VMWare client.
# Create the VMware client.
client = Client(auth_host, auth_user, auth_password)
# Actually do the work.