debuggers.hg
changeset 17303:8f96b9d78ff1
xend: Fix writing domain's VDI UUID into domain state file.
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 Mar 20 17:45:00 2008 +0000 (2008-03-20) |
parents | 683d7a6294dd |
children | aedab7d280cb |
files | tools/python/xen/xend/XendConfig.py |
line diff
1.1 --- a/tools/python/xen/xend/XendConfig.py Thu Mar 20 10:48:21 2008 +0000 1.2 +++ b/tools/python/xen/xend/XendConfig.py Thu Mar 20 17:45:00 2008 +0000 1.3 @@ -991,7 +991,7 @@ class XendConfig(dict): 1.4 dev_type, dev_cfg = self['devices'][dev_uuid] 1.5 is_bootable = dev_cfg.get('bootable', 0) 1.6 config.append(['bootable', int(is_bootable)]) 1.7 - config.append(['VDI'], dev_cfg.get('VDI', '')) 1.8 + config.append(['VDI', dev_cfg.get('VDI', '')]) 1.9 1.10 sxpr.append(['device', config]) 1.11