]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Wrong usage of "a"
authorhgangwx <hgangwx@cn.ibm.com>
Sat, 26 Dec 2015 12:45:17 +0000 (20:45 +0800)
committerhgangwx <hgangwx@cn.ibm.com>
Sat, 26 Dec 2015 17:18:21 +0000 (01:18 +0800)
Wrong usage of "a" in the mesages:
"Convert list of dicts to a indexted dict"
"Attempt to create a initiatorGroup"
"Return a empty"
"Return a object containing the parsed output"
"where volume is either a dict or a oslo_versionedobject"
"this is a update from legacy driver"

Should be:
"Convert list of dicts to an indexted dict"
"Attempt to create an initiatorGroup"
"Return an empty"
"Return an object containing the parsed output"
"where volume is either a dict or an oslo_versionedobject"
"this is an update from legacy driver"

Totally 6 occasions in Cinder base code.

Change-Id: I209fa7817f531107ae15a980f81c02fe63dd557e

cinder/image/image_utils.py
cinder/scheduler/host_manager.py
cinder/utils.py
cinder/volume/api.py
cinder/volume/drivers/emc/emc_vmax_masking.py
cinder/volume/drivers/hitachi/hnas_backend.py

index e9ed86f5834fac8a5ba6419203a95d4306414db5..cb637b995f4d6073421fa8cc43440c343cc04eb2 100644 (file)
@@ -56,7 +56,7 @@ CONF.register_opts(image_helper_opts)
 
 
 def qemu_img_info(path, run_as_root=True):
-    """Return a object containing the parsed output from qemu-img info."""
+    """Return an object containing the parsed output from qemu-img info."""
     cmd = ('env', 'LC_ALL=C', 'qemu-img', 'info', path)
     if os.name == 'nt':
         cmd = cmd[2:]
index d4c1135eab752278a0ccd33a74e4983f1cb09d0c..3568202a53034d501d5dcee0ed02257f1fa8846f 100644 (file)
@@ -221,7 +221,7 @@ class HostState(object):
                 self._append_backend_info(capability)
                 self.pools[pool_name] = single_pool
             else:
-                # this is a update from legacy driver
+                # this is an update from legacy driver
                 try:
                     single_pool = self.pools[pool_name]
                 except KeyError:
index dfb14fe8a6c3132dfe68fca29c0fd85a3197ef75..8a7237792fce53f45d1e5e8c879bea604fbea016 100644 (file)
@@ -282,7 +282,7 @@ def last_completed_audit_period(unit=None):
 
 
 def list_of_dicts_to_dict(seq, key):
-    """Convert list of dicts to a indexted dict.
+    """Convert list of dicts to an indexted dict.
 
     Takes a list of dicts, and converts it a nested dict
     indexed by <key>
index 8f7e62cac2bd9d1d51f5f35beb9a0cfd184568b5..f7c625b09a77e403235288ed0b29073fa8d402eb 100644 (file)
@@ -461,7 +461,7 @@ class API(base.Base):
 
         # NOTE(thangp): Update is called by various APIs, some of which are
         # not yet using oslo_versionedobjects.  We need to handle the case
-        # where volume is either a dict or a oslo_versionedobject.
+        # where volume is either a dict or an oslo_versionedobject.
         if isinstance(volume, objects_base.CinderObject):
             volume.update(fields)
             volume.save()
index b3b2b98b73ea920c93469fb662ee0c4fd1f9f97d..f0627f0ae0f1dcbed1ec3cf37710dbd6e9371ffd 100644 (file)
@@ -786,7 +786,7 @@ class EMCVMAXMasking(object):
     def _create_or_get_initiator_group(
             self, conn, controllerConfigService, igGroupName,
             connector, storageSystemName, extraSpecs):
-        """Attempt to create a initiatorGroup.
+        """Attempt to create an initiatorGroup.
 
         If one already exists with the same Initiator/wwns then get it.
         Check to see if an initiatorGroup already exists, that matches the
index 0e4688e21a62f36ccb0a165e7dab9ea9aced8354..61877aa2fd83560d1e456a590da72a930d8360ab 100644 (file)
@@ -356,7 +356,7 @@ class HnasBackend(object):
             tgt_list.append(tgt)
 
         if tgtalias is not None:
-            # We tried to find  'tgtalias' but didn't find. Return a empty
+            # We tried to find  'tgtalias' but didn't find. Return an empty
             # list.
             LOG.debug("There's no target %(alias)s in EVS %(evsid)s.",
                       {'alias': tgtalias, 'evsid': evsid})