From: dineshbhor Date: Thu, 25 Feb 2016 09:25:29 +0000 (+0000) Subject: Fix error message in cinder type-update X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=106bb1977e788e039aa53362811ecc5f1200903b;p=openstack-build%2Fcinder-build.git Fix error message in cinder type-update TrivialFix Change-Id: Ic2ef327156cca0e977cb2e5a7275fe8d18ec093e --- 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)