Merge "Add missing ws seperator between words"

This commit is contained in:
Zuul 2019-01-08 04:44:41 +00:00 committed by Gerrit Code Review
commit 1264ad108f
2 changed files with 2 additions and 2 deletions

View File

@ -314,7 +314,7 @@ wsgi_opts = [
store_opts = [
cfg.DictOpt('enabled_backends',
help=_('Key:Value pair of store identifier and store type. '
'In case of multiple backends should be separated'
'In case of multiple backends should be separated '
'using comma.')),
]

View File

@ -448,7 +448,7 @@ class ImageProxy(NotificationProxy, domain_proxy.Image):
raise webob.exc.HTTPBadRequest(
explanation=encodeutils.exception_to_unicode(e))
except exception.Duplicate as e:
msg = (_("Unable to upload duplicate image data for image"
msg = (_("Unable to upload duplicate image data for image "
"%(image_id)s: %(error)s") %
{'image_id': self.repo.image_id,
'error': encodeutils.exception_to_unicode(e)})