From 4cfed22bf8494fe54df49f6c11a0ee3f94625864 Mon Sep 17 00:00:00 2001 From: venkatamahesh Date: Wed, 3 Feb 2016 11:45:11 +0530 Subject: [PATCH] Fix the replication spelling in message Changed replicaiton to replication Change-Id: I58cd74b644e976d49b72075eed347c8cce4c4352 --- cinder/volume/drivers/hpe/hpe_3par_common.py | 2 +- cinder/volume/drivers/hpe/hpe_lefthand_iscsi.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cinder/volume/drivers/hpe/hpe_3par_common.py b/cinder/volume/drivers/hpe/hpe_3par_common.py index 856e4639f..412637429 100644 --- a/cinder/volume/drivers/hpe/hpe_3par_common.py +++ b/cinder/volume/drivers/hpe/hpe_3par_common.py @@ -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) diff --git a/cinder/volume/drivers/hpe/hpe_lefthand_iscsi.py b/cinder/volume/drivers/hpe/hpe_lefthand_iscsi.py index 57f44404a..eeefd49c9 100644 --- a/cinder/volume/drivers/hpe/hpe_lefthand_iscsi.py +++ b/cinder/volume/drivers/hpe/hpe_lefthand_iscsi.py @@ -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) -- 2.45.2