summaryrefslogtreecommitdiffstats
path: root/nova/virt
diff options
context:
space:
mode:
authorJohannes Erdfelt <johannes.erdfelt@rackspace.com>2011-04-13 10:10:40 -0700
committerJohannes Erdfelt <johannes.erdfelt@rackspace.com>2011-04-13 10:10:40 -0700
commitc04b0caca4a725be390271be30bf8a034aa5ca9d (patch)
tree3d0359cd3392cd0a1e58b9f81a14bb30b0720596 /nova/virt
parent12ec5f5c0d6a88779780b15b6ef38a016d6aae4a (diff)
downloadnova-c04b0caca4a725be390271be30bf8a034aa5ca9d.tar.gz
nova-c04b0caca4a725be390271be30bf8a034aa5ca9d.tar.xz
nova-c04b0caca4a725be390271be30bf8a034aa5ca9d.zip
Minor formatting cleanup
Diffstat (limited to 'nova/virt')
-rw-r--r--nova/virt/xenapi/vm_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/virt/xenapi/vm_utils.py b/nova/virt/xenapi/vm_utils.py
index dd1fd9383..32a617ef4 100644
--- a/nova/virt/xenapi/vm_utils.py
+++ b/nova/virt/xenapi/vm_utils.py
@@ -454,8 +454,8 @@ class VMHelper(HelperBase):
vdi_size > FLAGS.max_kernel_ramdisk_size:
max_size = FLAGS.max_kernel_ramdisk_size
raise exception.Error(
- _("Kernel/Ramdisk image is too large, %(vdi_size)d bytes "
- "(max %(max_size)d bytes)") % locals())
+ _("Kernel/Ramdisk image is too large: %(vdi_size)d bytes, "
+ "max %(max_size)d bytes") % locals())
name_label = get_name_label_for_image(image)
vdi_ref = cls.create_vdi(session, sr_ref, name_label, vdi_size, False)