summaryrefslogtreecommitdiffstats
path: root/nova
diff options
context:
space:
mode:
authorChristian Berendt <berendt@b1-systems.de>2011-02-07 15:20:16 +0100
committerChristian Berendt <berendt@b1-systems.de>2011-02-07 15:20:16 +0100
commite62665a12e0b02ef73562a5d579782972332cbe1 (patch)
tree070c64df2390a9b0952afe46ba98729fe33c6867 /nova
parent26f2f38ef217676292c6cd151664a91fb6c9fd24 (diff)
downloadnova-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.py4
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',