summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Bringard <kbringard@attinteractive.com>2011-03-25 10:56:36 -0600
committerKevin Bringard <kbringard@attinteractive.com>2011-03-25 10:56:36 -0600
commit2e106e3c88bc518cbb43faa8f398b7481ee3d255 (patch)
treef6cac46a69a7f88be3b38d61135c7506b4525976
parent52f2479aac7b2fc84c23dba9f337cbfcde6e06e2 (diff)
downloadnova-2e106e3c88bc518cbb43faa8f398b7481ee3d255.tar.gz
nova-2e106e3c88bc518cbb43faa8f398b7481ee3d255.tar.xz
nova-2e106e3c88bc518cbb43faa8f398b7481ee3d255.zip
Fixed a typo on line 677 where there was no space between % and FLAGS
-rw-r--r--nova/network/linux_net.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/network/linux_net.py b/nova/network/linux_net.py
index 560f568a9..b59a8b7a2 100644
--- a/nova/network/linux_net.py
+++ b/nova/network/linux_net.py
@@ -674,7 +674,7 @@ def _dnsmasq_cmd(net):
cmd = ['sudo', '-E', 'dnsmasq',
'--strict-order',
'--bind-interfaces',
- ' --conf-file=%s' %FLAGS.dnsmasq_config_file,
+ ' --conf-file=%s' % FLAGS.dnsmasq_config_file,
'--domain=%s' % FLAGS.dhcp_domain,
'--pid-file=%s' % _dhcp_file(net['bridge'], 'pid'),
'--listen-address=%s' % net['gateway'],