Remove white space between print () in exc.py

There is a white space in line [print (*,
then we remove it.

Change-Id: I4ec20501a11f2cbb5b8eb1623d18088d04bfdaad
This commit is contained in:
gengchc2 2016-10-17 17:57:46 +08:00
parent eba6e59fe9
commit 10a85eb271
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ def from_response(resp, url, method):
body = json.loads(resp.text)
msg = body.get('description', None)
except Exception as e:
print ('get msg failed, resp.text:%s, e:%s ' % (resp.text, e))
print('get msg failed, resp.text:%s, e:%s ' % (resp.text, e))
return ClientException(resp.status_code, message=msg,
url=url, method=method)