Skip to content

Commit a6d7b02

Browse files
committed
Add VMware Cloud on AWS APIs
1 parent 11bb1dc commit a6d7b02

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ python:
44
- "3.6"
55
# command to install dependencies
66
install:
7-
- pip install -r requirements.txt --extra-index-url file://$PWD/lib --upgrade --ignore-installed six
7+
- pip install -r requirements.txt --extra-index-url file://$PWD/lib --upgrade --ignore-installed six
88
- pip install -r test-requirements.txt
99
- pip install pycodestyle
1010
# command to run tests

samples/vmc/helpers/vmc_task_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ def list_all_tasks(task_client, org_id):
5959
headers = ['ID', 'Status', 'Progress', 'Started', 'User']
6060
table = []
6161
for task in tasks:
62-
table.append([task.id, task.status, task.progress_percent,
62+
table.append([task.id, task.status, task.progress_percent,
6363
task.start_time, task.user_name])
6464
print(tabulate(table, headers))

samples/vmc/sddc/create_delete_sddc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def setup(self):
9090

9191
def create_sddc(self):
9292
print('\n# Example: Create a SDDC ({}) in org {}:'.
93-
format(self.sddc_name,self.org_id))
93+
format(self.sddc_name, self.org_id))
9494

9595
provider = os.environ.get('VMC_PROVIDER', 'AWS')
9696
sddc_config = AwsSddcConfig(

0 commit comments

Comments
 (0)