1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-10-12 07:33:48 +03:00

maint: fix grammar in error message

* python/tests/create.py: Use correct wording.
This commit is contained in:
Eric Blake
2011-02-21 10:35:25 -07:00
parent b3ff07a07d
commit f409661e71

View File

@@ -40,13 +40,13 @@ elif kernelOv.find('xen0'):
initrdU = "/boot/initrd-" + kernelOv.replace('xen0', 'xenU') + ".img"
if not os.access(kernelU, os.R_OK):
print "Did not found the guest kernel %s" % (kernelU)
print "Did not find the guest kernel %s" % (kernelU)
sys.exit(1)
kernelU = "<kernel>" + kernelU + "</kernel>"
if not os.access(initrdU, os.R_OK):
print "Did not found the guest initrd %s" % (initrdU)
print "Did not find the guest initrd %s" % (initrdU)
initrdU = ""
else:
initrdU = "<initrd>" + initrdU + "</initrd>"