]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Fix formatting in vol/snap delete API messages
authorEric Harney <eharney@redhat.com>
Wed, 16 Mar 2016 15:08:08 +0000 (11:08 -0400)
committerEric Harney <eharney@redhat.com>
Wed, 16 Mar 2016 15:08:25 +0000 (11:08 -0400)
These messages print with incorrect spacing and
are shown from cinderclient when running volume
and snapshot delete.

Change-Id: I81175133baa84b43c71b6ca5bd7a93db7b541d3d

cinder/volume/api.py

index 5bab80545d5dd7696ba9c2afe132d27e34dacbfb..e539e8c15763c78dec47d3226acd919725bfbebf 100644 (file)
@@ -390,8 +390,8 @@ class API(base.Base):
 
         if not result:
             status = utils.build_or_str(expected.get('status'),
-                                        _(' status must be %s and '))
-            msg = _('Volume%s must not be migrating, attached, belong to a '
+                                        _('status must be %s and'))
+            msg = _('Volume %s must not be migrating, attached, belong to a '
                     'consistency group or have snapshots.') % status
             LOG.info(msg)
             raise exception.InvalidVolume(reason=msg)
@@ -942,8 +942,8 @@ class API(base.Base):
         result = snapshot.conditional_update({'status': 'deleting'}, expected)
         if not result:
             status = utils.build_or_str(expected.get('status'),
-                                        _(' status must be %s and '))
-            msg = (_('Snapshot%s must not be part of a consistency group.') %
+                                        _('status must be %s and'))
+            msg = (_('Snapshot %s must not be part of a consistency group.') %
                    status)
             LOG.error(msg)
             raise exception.InvalidSnapshot(reason=msg)