Fix the replication spelling in message

Changed replicaiton to replication

Change-Id: I58cd74b644e976d49b72075eed347c8cce4c4352
This commit is contained in:
venkatamahesh 2016-02-03 11:45:11 +05:30
parent 7a6f1d8a44
commit 4cfed22bf8
2 changed files with 2 additions and 2 deletions

View File

@ -297,7 +297,7 @@ class HPE3PARCommon(object):
def check_replication_flags(self, options, required_flags):
for flag in required_flags:
if not options.get(flag, None):
msg = (_('%s is not set and is required for the replicaiton '
msg = (_('%s is not set and is required for the replication '
'device to be valid.') % flag)
LOG.error(msg)
raise exception.InvalidInput(reason=msg)

View File

@ -351,7 +351,7 @@ class HPELeftHandISCSIDriver(driver.ISCSIDriver):
def check_replication_flags(self, options, required_flags):
for flag in required_flags:
if not options.get(flag, None):
msg = _('%s is not set and is required for the replicaiton '
msg = _('%s is not set and is required for the replication '
'device to be valid.') % flag
LOG.error(msg)
raise exception.InvalidInput(reason=msg)