From ca87719af0a2e1f67592c068937ebf389396a66f Mon Sep 17 00:00:00 2001 From: Eric Harney Date: Fri, 21 Aug 2015 17:23:20 -0400 Subject: [PATCH] Add missing space to logged error in create volume Currently this reads: Originating source volume status must be one of'available, in-use' values Change-Id: I5c387ff83670672e882ee7f155edceb4d8a8a7f8 --- cinder/volume/flows/api/create_volume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinder/volume/flows/api/create_volume.py b/cinder/volume/flows/api/create_volume.py index a58703426..c2e2481c8 100644 --- a/cinder/volume/flows/api/create_volume.py +++ b/cinder/volume/flows/api/create_volume.py @@ -93,7 +93,7 @@ class ExtractVolumeRequestTask(flow_utils.CinderTask): if resource: for prop, allowed_states in zip(props, allowed_vals): if resource[prop] not in allowed_states: - msg = _("Originating %(res)s %(prop)s must be one of" + msg = _("Originating %(res)s %(prop)s must be one of " "'%(vals)s' values") msg = msg % {'res': resource_name, 'prop': prop, -- 2.45.2