Correct a typo of the hpe driver

This patch changes 'stoping' to 'stopping'
in cinder/volume/drivers/hpe/hpe_3par_common.py

Change-Id: Ic3c59412e85f1ac4bf583b47842b64d74268f306
This commit is contained in:
zhaoleilc 2020-07-11 13:33:31 +08:00
parent ffe30e4f04
commit cdfee5608b
1 changed files with 1 additions and 1 deletions

View File

@ -3633,7 +3633,7 @@ class HPE3PARCommon(object):
try:
self.client.stopRemoteCopy(rcg_name)
except Exception as ex:
msg = (_("There was an error stoping remote copy: %s.") %
msg = (_("There was an error stopping remote copy: %s.") %
six.text_type(ex))
LOG.error(msg)
raise exception.VolumeBackendAPIException(data=msg)