summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Santa Barbara <justin@fathomdb.com>2011-03-28 01:05:20 -0700
committerJustin Santa Barbara <justin@fathomdb.com>2011-03-28 01:05:20 -0700
commit7ed45fe61416213a4fbfba7e45a765e43b933e16 (patch)
tree26a8278bc027bfd53db580a2db7d12f3afe3c6d3
parentb648f3499626874327d8f1b087a578afe903d010 (diff)
downloadnova-7ed45fe61416213a4fbfba7e45a765e43b933e16.tar.gz
nova-7ed45fe61416213a4fbfba7e45a765e43b933e16.tar.xz
nova-7ed45fe61416213a4fbfba7e45a765e43b933e16.zip
Fixed some format strings
-rw-r--r--nova/compute/manager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py
index 2b8494787..0e42a4bd2 100644
--- a/nova/compute/manager.py
+++ b/nova/compute/manager.py
@@ -1064,12 +1064,12 @@ class ComputeManager(manager.SchedulerDependentManager):
#We could have a separate task to correct this error.
#TODO(justinsb): What happens during a live migration?
LOG.info(_("Found instance '%(name)s' in DB but no VM. "
- "State=%(db_state), so assuming spawn is in "
+ "State=%(db_state)s, so assuming spawn is in "
"progress.") % locals())
vm_state = db_state
else:
LOG.info(_("Found instance '%(name)s' in DB but no VM. "
- "State=%(db_state), so setting state to "
+ "State=%(db_state)s, so setting state to "
"shutoff.") % locals())
vm_state = power_state.SHUTOFF
else: