1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-12-18 20:24:58 +03:00

Fix typo "informations" -> "information" (Atsushi SAKAI and

Saori FUKUTA).
This commit is contained in:
Richard W.M. Jones
2008-03-14 11:08:03 +00:00
parent adbf991a1d
commit 3e59e29859
26 changed files with 103 additions and 98 deletions

View File

@@ -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: