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:
@@ -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>"
|
||||
|
Reference in New Issue
Block a user