From 765147a9ce429c560a4be1869ac5d33bcc05ec6c Mon Sep 17 00:00:00 2001 From: Wangpan Date: Mon, 28 Jan 2013 14:01:10 +0800 Subject: Fix a typo of log message in _poll_unconfirmed_resizes That is just a negligible typo issue, so I have not filed a bug on LP. The typo log message is like "notRESIZED/None", and should be "not RESIZED/None". Change-Id: I6137b477185419b1e638be3ed5310644aff96d76 --- nova/compute/manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nova/compute/manager.py b/nova/compute/manager.py index 275611cdf..dbfee2469 100644 --- a/nova/compute/manager.py +++ b/nova/compute/manager.py @@ -3069,8 +3069,8 @@ class ComputeManager(manager.SchedulerDependentManager): vm_state = instance['vm_state'] task_state = instance['task_state'] if vm_state != vm_states.RESIZED or task_state is not None: - reason = _("In states %(vm_state)s/%(task_state)s, not" - "RESIZED/None") + reason = _("In states %(vm_state)s/%(task_state)s, not " + "RESIZED/None") _set_migration_to_error(migration, reason % locals(), instance=instance) continue -- cgit