diff --git a/cinder/volume/drivers/ibm/storwize_svc/replication.py b/cinder/volume/drivers/ibm/storwize_svc/replication.py index de1aacc02cc..879c7028db0 100644 --- a/cinder/volume/drivers/ibm/storwize_svc/replication.py +++ b/cinder/volume/drivers/ibm/storwize_svc/replication.py @@ -357,7 +357,7 @@ class StorwizeSVCReplicationGlobalMirror( try: rel_info = self.driver._helpers.get_relationship_info(vref) except Exception as e: - msg = (_('Fail to get remote copy information for %(volume)s ' + msg = (_('Failed to get remote copy information for %(volume)s ' 'due to %(err)s.'), {'volume': vref['id'], 'err': e}) LOG.error(msg) raise exception.VolumeDriverException(data=msg) @@ -379,7 +379,7 @@ class StorwizeSVCReplicationGlobalMirror( try: rel_info = self.driver._helpers.get_relationship_info(vref) except Exception as e: - msg = (_('Fail to get remote copy information for %(volume)s ' + msg = (_('Failed to get remote copy information for %(volume)s ' 'due to %(err)s'), {'volume': vref['id'], 'err': e}) LOG.error(msg) raise exception.VolumeDriverException(message=msg)