summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2011-02-21 10:35:25 -0700
committerEric Blake <eblake@redhat.com>2011-02-21 10:35:25 -0700
commit15c255ca8a58335d1e8f2a352740e37ff384d573 (patch)
tree713ca20ee57f6c9d07765fcf48d5ec40630c207d /tests
parentc8d59ea64a7e09f94c9f5081f7fb718d702a4ff5 (diff)
downloadlibvirt-python-split-15c255ca8a58335d1e8f2a352740e37ff384d573.tar.gz
libvirt-python-split-15c255ca8a58335d1e8f2a352740e37ff384d573.tar.xz
libvirt-python-split-15c255ca8a58335d1e8f2a352740e37ff384d573.zip
maint: fix grammar in error message
* python/tests/create.py: Use correct wording.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/create.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/create.py b/tests/create.py
index 4e5f644..95e31a9 100755
--- a/tests/create.py
+++ b/tests/create.py
@@ -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>"