]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Fix the replication spelling in message
authorvenkatamahesh <venkatamaheshkotha@gmail.com>
Wed, 3 Feb 2016 06:15:11 +0000 (11:45 +0530)
committervenkatamahesh <venkatamaheshkotha@gmail.com>
Wed, 3 Feb 2016 06:16:57 +0000 (11:46 +0530)
Changed replicaiton to replication

Change-Id: I58cd74b644e976d49b72075eed347c8cce4c4352

cinder/volume/drivers/hpe/hpe_3par_common.py
cinder/volume/drivers/hpe/hpe_lefthand_iscsi.py

index 856e4639fa56a37ea06025bf73f15b9fc8d590ee..4126374292ee5d109137a4b1d6ead7ddd64d9947 100644 (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)
index 57f44404ae600df0171fd2943b234064624c9a23..eeefd49c9e4fa9f1c55eaa3d414c42e2b29e54c1 100644 (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)