diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-07-20 12:17:44 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-07-20 12:17:44 -0400 |
commit | e65a9fe5827e0d5961e618a3163382c2ad02274c (patch) | |
tree | 947a487f05237127e87bc3bc24b7773621ca3a71 | |
parent | 9febf1eec69708d8c54b6348e882da384d8b42a9 (diff) | |
download | nova-e65a9fe5827e0d5961e618a3163382c2ad02274c.tar.gz nova-e65a9fe5827e0d5961e618a3163382c2ad02274c.tar.xz nova-e65a9fe5827e0d5961e618a3163382c2ad02274c.zip |
correct indentation
-rw-r--r-- | nova/virt/libvirt/connection.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/virt/libvirt/connection.py b/nova/virt/libvirt/connection.py index 56aaa6c50..4905d931a 100644 --- a/nova/virt/libvirt/connection.py +++ b/nova/virt/libvirt/connection.py @@ -1015,8 +1015,8 @@ class LibvirtConnection(driver.ComputeDriver): 'volumes': block_device_mapping} if FLAGS.vnc_enabled and FLAGS.libvirt_type not in ('lxc', 'uml'): - xml_info['vncserver_host'] = FLAGS.vncserver_host - xml_info['vnc_keymap'] = FLAGS.vnc_keymap + xml_info['vncserver_host'] = FLAGS.vncserver_host + xml_info['vnc_keymap'] = FLAGS.vnc_keymap if not rescue: if instance['kernel_id']: xml_info['kernel'] = xml_info['basepath'] + "/kernel" |