diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2008-03-14 11:08:03 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2008-03-14 11:08:03 +0000 |
commit | 8b3c382e28dfff4050f40fd018de2f4cd1ae3c77 (patch) | |
tree | dce3cccc2efe5cdbbebd8e11c892d005510b130a /tests | |
parent | bc430178efc7ec9a767aa5db2aedfecc967b1767 (diff) | |
download | libvirt-python-8b3c382e28dfff4050f40fd018de2f4cd1ae3c77.tar.gz |
Fix typo "informations" -> "information" (Atsushi SAKAI and
Saori FUKUTA).
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/node.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/node.py b/tests/node.py index 2e33fb7..f199fc3 100755 --- a/tests/node.py +++ b/tests/node.py @@ -15,14 +15,14 @@ if conn == None: try: (model, memory, cpus, mhz, nodes, socket, cores, threads) = conn.getInfo() except: - print 'Failed to extract the current node informations' + print 'Failed to extract the current node information' sys.exit(1) print "Xen running on %d %s processors at %d MHz, %d MBytes of memory" % ( cpus, model, mhz, memory) if cpus > nodes * socket * cores * threads: - print "Erroneous CPU informations" + print "Erroneous CPU information" sys.exit(1) if cpus < nodes * socket * cores * threads: |