Correct some spelling errors

Change-Id: I3c139565fc9300449eb25d87dfcc9d4177bc2085
This commit is contained in:
yuhui_inspur
2017-02-08 00:31:04 -08:00
committed by Sean Dague
parent 1585ca189e
commit fdd2c1ed98

View File

@@ -101,8 +101,8 @@ class BaseWeigher(object):
for obj in weighed_obj_list: for obj in weighed_obj_list:
weight = self._weigh_object(obj.obj, weight_properties) weight = self._weigh_object(obj.obj, weight_properties)
# Record the min and max values if they are None. If they anything # Record the min and max values if they are None. If they are
# but none we assume that the weigher has set them # anything but none, we assume that the weigher had set them.
if self.minval is None: if self.minval is None:
self.minval = weight self.minval = weight
if self.maxval is None: if self.maxval is None: