Fix broken 'xm sedf', fixed by Ross Mcilroy
authorsd386@font.cl.cam.ac.uk <sd386@font.cl.cam.ac.uk>
Fri, 19 Aug 2005 18:08:29 +0000 (18:08 +0000)
committersd386@font.cl.cam.ac.uk <sd386@font.cl.cam.ac.uk>
Fri, 19 Aug 2005 18:08:29 +0000 (18:08 +0000)
Signed-off by: Stephan.Diestelhorst@{cl.cam.ac.uk, inf.tu-dresden.de}

tools/python/xen/xm/main.py

index e195196a5e055083864c98ca12d31c76533626cd..d711ef9d697c01bfa22f51c553fa84f71935250e 100644 (file)
@@ -434,7 +434,7 @@ def xm_sedf(args):
     arg_check(args, 6, "sedf")
     
     dom = args[0]
-    v = map(int, args[1:5])
+    v = map(int, args[1:6])
     from xen.xend.XendClient import server
     server.xend_domain_cpu_sedf_set(dom, *v)