summary refs log tree commit diff stats
path: root/QMP/vm-info
diff options
context:
space:
mode:
Diffstat (limited to 'QMP/vm-info')
-rwxr-xr-xQMP/vm-info2
1 files changed, 1 insertions, 1 deletions
diff --git a/QMP/vm-info b/QMP/vm-info
index b150d8240c..8ebaeb38c0 100755
--- a/QMP/vm-info
+++ b/QMP/vm-info
@@ -25,7 +25,7 @@ def main():
     qemu = qmp.QEMUMonitorProtocol(argv[1])
     qemu.connect()
 
-    for cmd in [ 'version', 'hpet', 'kvm', 'status', 'uuid', 'balloon' ]:
+    for cmd in [ 'version', 'kvm', 'status', 'uuid', 'balloon' ]:
         print cmd + ': ' + str(qemu.send('query-' + cmd))
 
 if __name__ == '__main__':