Fix spelling typos

Fixes for:
* nova/*py
* nova/scheduler/
* nova/compute/*py
* nova/api/ec2/

Change-Id: I7bec89b3551eda84d596e55eeba9ccb9d944a5cb
This commit is contained in:
Joe Gordon
2012-08-16 15:07:19 -05:00
parent 7819a052ff
commit c487197138
8 changed files with 11 additions and 11 deletions

View File

@@ -221,7 +221,7 @@ class TestCase(unittest.TestCase):
error = abs(float(d1value) - float(d2value))
within_tolerance = error <= tolerance
except (ValueError, TypeError):
# If both values aren't convertable to float, just ignore
# If both values aren't convertible to float, just ignore
# ValueError if arg is a str, TypeError if it's something else
# (like None)
within_tolerance = False