From: Jay S. Bryant <jsbryant@us.ibm.com>
Date: Fri, 10 Jul 2015 21:38:15 +0000 (-0500)
Subject: Fix not implemented wording in update_migrated_volume
X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=e42c66a25f3d342c758f5f58aa58b079be065530;p=openstack-build%2Fcinder-build.git

Fix not implemented wording in update_migrated_volume

It was recommended in review https://review.openstack.org/#/c/180873
that the message sent to the NotImplementedError exception be reworded.
The recommendation was made late in the review process and was not
corrected.  This patch implements the recommendation.

Change-Id: I1b0356c7b9d7e493c8501ce388ca4bc855b1e517
---

diff --git a/cinder/volume/driver.py b/cinder/volume/driver.py
index 1d6436ba2..e93190313 100644
--- a/cinder/volume/driver.py
+++ b/cinder/volume/driver.py
@@ -1380,7 +1380,7 @@ class VolumeDriver(ConsistencyGroupVD, TransferVD, ManageableVD, ExtendVD,
         :param original_volume_status: The status of the original volume
         :return model_update to update DB with any needed changes
         """
-        msg = _("The method update_migrated_volume not implemented.")
+        msg = _("The method update_migrated_volume is not implemented.")
         raise NotImplementedError(msg)
 
     def migrate_volume(self, context, volume, host):