ia64/xen-unstable
changeset 19016:0d119f628795
xm: Fix syntax error.
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Thu Jan 08 15:18:30 2009 +0000 (2009-01-08) |
parents | f20e5039b168 |
children | 8c894687c2a5 |
files | tools/python/xen/xm/main.py |
line diff
1.1 --- a/tools/python/xen/xm/main.py Thu Jan 08 13:49:05 2009 +0000 1.2 +++ b/tools/python/xen/xm/main.py Thu Jan 08 15:18:30 2009 +0000 1.3 @@ -2500,7 +2500,7 @@ def xm_pci_attach(args): 1.4 "VM": get_single_vm(dom), 1.5 "PPCI": target_ref, 1.6 "hotplug_slot": vslt, 1.7 - "options": dict([k, v] for k, v in config_pci_opts) 1.8 + "options": dict(config_pci_opts) 1.9 } 1.10 server.xenapi.DPCI.create(dpci_record) 1.11