VMware: Fix missing space in error message

Add missing space in "requestto" for the error message
"Communication error sending http PUT requestto the url"

Change-Id: I407752285a31e23b747fefc06cd8c720f90c1efe
This commit is contained in:
Giridhar Jayavelu 2015-09-22 11:58:29 -07:00
parent c2b8702a82
commit cc36d53ad3
1 changed files with 1 additions and 1 deletions

View File

@ -509,7 +509,7 @@ class Store(glance_store.Store):
# error instead of returning the response.
# See http://bugs.python.org/issue16062. Here, we log the error
# and continue to look into the response.
msg = _LE('Communication error sending http %(method)s request'
msg = _LE('Communication error sending http %(method)s request '
'to the url %(url)s.\n'
'Got IOError %(e)s') % {'method': 'PUT',
'url': url,