From 106bb1977e788e039aa53362811ecc5f1200903b Mon Sep 17 00:00:00 2001 From: dineshbhor Date: Thu, 25 Feb 2016 09:25:29 +0000 Subject: [PATCH] Fix error message in cinder type-update TrivialFix Change-Id: Ic2ef327156cca0e977cb2e5a7275fe8d18ec093e --- cinder/api/contrib/types_manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinder/api/contrib/types_manage.py b/cinder/api/contrib/types_manage.py index ff928fec6..f90ea12ac 100644 --- a/cinder/api/contrib/types_manage.py +++ b/cinder/api/contrib/types_manage.py @@ -121,7 +121,7 @@ class VolumeTypesManageController(wsgi.Controller): raise webob.exc.HTTPBadRequest(explanation=msg) if name is None and description is None and is_public is None: - msg = _("Specify volume type name, description, is_public or" + msg = _("Specify volume type name, description, is_public or " "a combination thereof.") raise webob.exc.HTTPBadRequest(explanation=msg) -- 2.45.2