Remove white space between print ()

Change-Id: Ia27b3b5975590279775e438edfa244cc39da6e42
This commit is contained in:
Nam Nguyen Hoai 2017-01-19 11:56:49 +07:00
parent fede2601b8
commit 742c52d3bd
2 changed files with 3 additions and 3 deletions

View File

@ -133,7 +133,7 @@ def get_next_images(auth_token, region, limit, images, marker):
images = get_next_images(auth_token, region, limit, images, marker)
else:
# todo (nathan) throw exception here
print ("todo throw exception")
print("todo throw exception")
return images

View File

@ -52,7 +52,7 @@ def get_coda_token():
result = json.loads(response.text)['access']['token']['id']
except Exception as ex:
print ("error in get_coda_token", ex)
print("error in get_coda_token", ex)
return result
@ -92,7 +92,7 @@ def user_authenticate(tenant_id, username, password):
verify=False)
result = json.loads(response.text)['access']['token']['id']
except Exception as ex:
print ("error in user_authenticate", ex)
print("error in user_authenticate", ex)
return result