diff options
| author | Christian Berendt <berendt@b1-systems.de> | 2011-02-07 15:20:16 +0100 |
|---|---|---|
| committer | Christian Berendt <berendt@b1-systems.de> | 2011-02-07 15:20:16 +0100 |
| commit | e62665a12e0b02ef73562a5d579782972332cbe1 (patch) | |
| tree | 070c64df2390a9b0952afe46ba98729fe33c6867 /nova | |
| parent | 26f2f38ef217676292c6cd151664a91fb6c9fd24 (diff) | |
| download | nova-e62665a12e0b02ef73562a5d579782972332cbe1.tar.gz nova-e62665a12e0b02ef73562a5d579782972332cbe1.tar.xz nova-e62665a12e0b02ef73562a5d579782972332cbe1.zip | |
fixed format according to PEP8
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/network/linux_net.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/network/linux_net.py b/nova/network/linux_net.py index 6ed42caae..de0e488ae 100644 --- a/nova/network/linux_net.py +++ b/nova/network/linux_net.py @@ -318,7 +318,7 @@ def _host_dhcp(fixed_ip_ref): instance_ref = fixed_ip_ref['instance'] return "%s,%s.%s,%s" % (instance_ref['mac_address'], instance_ref['hostname'], - FLAGS.dhcp_domain, + FLAGS.dhcp_domain, fixed_ip_ref['address']) @@ -363,7 +363,7 @@ def _dnsmasq_cmd(net): ' --strict-order', ' --bind-interfaces', ' --conf-file=', - ' --domain=%s' % FLAGS.dhcp_domain, + ' --domain=%s' % FLAGS.dhcp_domain, ' --pid-file=%s' % _dhcp_file(net['bridge'], 'pid'), ' --listen-address=%s' % net['gateway'], ' --except-interface=lo', |
