From d77504231ae0562051a530d1979f8a21ec0ac541 Mon Sep 17 00:00:00 2001 From: Ikuo Kumagai Date: Mon, 31 Aug 2015 01:35:41 +0000 Subject: [PATCH] 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 --- samples/plugins/context/context_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/plugins/context/context_plugin.py b/samples/plugins/context/context_plugin.py index 0b09061fe1..188c211ec6 100644 --- a/samples/plugins/context/context_plugin.py +++ b/samples/plugins/context/context_plugin.py @@ -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"),