summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrey Morris <trey.morris@rackspace.com>2011-02-15 17:06:22 -0600
committerTrey Morris <trey.morris@rackspace.com>2011-02-15 17:06:22 -0600
commit9a8c9d78e5fb7ce67fd6afb9c1eebb49b47abfac (patch)
treeb69119eedb6908525288628122b493b3f082c732
parent92c02908b3e33806e706ba9c59ca35398b645345 (diff)
parent56df9b129526aad29ac1a751153d94cfe7656993 (diff)
downloadnova-9a8c9d78e5fb7ce67fd6afb9c1eebb49b47abfac.tar.gz
nova-9a8c9d78e5fb7ce67fd6afb9c1eebb49b47abfac.tar.xz
nova-9a8c9d78e5fb7ce67fd6afb9c1eebb49b47abfac.zip
merge with trunk
-rw-r--r--locale/nova.pot2
-rw-r--r--nova/virt/xenapi/vm_utils.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/locale/nova.pot b/locale/nova.pot
index a96411e33..53e38c619 100644
--- a/locale/nova.pot
+++ b/locale/nova.pot
@@ -1826,7 +1826,7 @@ msgstr ""
#: nova/virt/xenapi/vm_utils.py:290
#, python-format
-msgid "PV Kernel in VDI:%d"
+msgid "PV Kernel in VDI:%s"
msgstr ""
#: nova/virt/xenapi/vm_utils.py:318
diff --git a/nova/virt/xenapi/vm_utils.py b/nova/virt/xenapi/vm_utils.py
index 574ef0944..80cc3035d 100644
--- a/nova/virt/xenapi/vm_utils.py
+++ b/nova/virt/xenapi/vm_utils.py
@@ -394,7 +394,7 @@ class VMHelper(HelperBase):
pv = True
elif pv_str.lower() == 'false':
pv = False
- LOG.debug(_("PV Kernel in VDI:%d"), pv)
+ LOG.debug(_("PV Kernel in VDI:%s"), pv)
return pv
@classmethod