From daf393f8fe40b52edf17c73ec57c9a6c409ed1bc Mon Sep 17 00:00:00 2001 From: zhufl Date: Mon, 19 Nov 2018 13:45:07 +0800 Subject: [PATCH] Add missing ws seperator between words This is to add missing ws seperator between words, usually in log messages. Change-Id: I1cb39a1ec1b2927d123b63c7b9df29499565e168 --- glance/common/wsgi.py | 2 +- glance/notifier.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/glance/common/wsgi.py b/glance/common/wsgi.py index 7ccd76a2f1..bda6f03a2f 100644 --- a/glance/common/wsgi.py +++ b/glance/common/wsgi.py @@ -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.')), ] diff --git a/glance/notifier.py b/glance/notifier.py index 8db5efc461..1d164950ce 100644 --- a/glance/notifier.py +++ b/glance/notifier.py @@ -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)})