ia64/xen-unstable
changeset 12098:d1f6aa51621f
[XM] Add missing parameter to XM XMLRPC call so that we get the
devices in xm list --long
Signed-off-by: Alastair Tse <atse@xensource.com>
devices in xm list --long
Signed-off-by: Alastair Tse <atse@xensource.com>
author | Alastair Tse <atse@xensource.com> |
---|---|
date | Thu Oct 05 18:22:13 2006 +0100 (2006-10-05) |
parents | d9320fb7c769 |
children | acb85833be66 |
files | tools/python/xen/xm/main.py |
line diff
1.1 --- a/tools/python/xen/xm/main.py Thu Oct 05 17:29:20 2006 +0100 1.2 +++ b/tools/python/xen/xm/main.py Thu Oct 05 18:22:13 2006 +0100 1.3 @@ -485,7 +485,7 @@ def getDomains(domain_names, full = 0): 1.4 if domain_names: 1.5 return [server.xend.domain(dom, full) for dom in domain_names] 1.6 else: 1.7 - return server.xend.domains(1) 1.8 + return server.xend.domains(1, full) 1.9 1.10 1.11 def xm_list(args):