Fix typo in the code comment

Line62- # and than do what you need with this client

"than" is not suitable in the sentence.
"then" is correct.

Change-Id: Ic2b6999d522a0aa797bece452509217cbbf12be0
Closes-Bug: #1490359
This commit is contained in:
Ikuo Kumagai 2015-08-31 01:35:41 +00:00
parent 05cf237910
commit d77504231a

View File

@ -59,7 +59,7 @@ class CreateFlavorContext(context.Context):
try:
# use rally.osclients to get necessary client instance
nova = osclients.Clients(self.context["admin"]["endpoint"]).nova()
# and than do what you need with this client
# and then do what you need with this client
self.context["flavor"] = nova.flavors.create(
# context settings are stored in self.config
name=self.config.get("flavor_name", "rally_test_flavor"),