summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Bringard <kbringard@attinteractive.com>2011-05-02 13:19:58 -0600
committerKevin Bringard <kbringard@attinteractive.com>2011-05-02 13:19:58 -0600
commitc0d046ccb17c44ca66498d4b50e573c835b3d508 (patch)
tree1ff50076d2580b81562f0ef2717e7a3c907730df
parentadd207150a68b312614604281ca079164304110d (diff)
downloadnova-c0d046ccb17c44ca66498d4b50e573c835b3d508.tar.gz
nova-c0d046ccb17c44ca66498d4b50e573c835b3d508.tar.xz
nova-c0d046ccb17c44ca66498d4b50e573c835b3d508.zip
Fixed 2 lines to allow pep8 check to pass
-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 9e2c59e70..82b2c7282 100644
--- a/nova/network/linux_net.py
+++ b/nova/network/linux_net.py
@@ -63,8 +63,8 @@ flags.DEFINE_string('dns_server', None,
'if set, uses specific dns server for dnsmasq')
flags.DEFINE_string('dmz_cidr', '10.128.0.0/24',
'dmz range that should be accepted')
-flags.DEFINE_string('dnsmasq_config_file',"",
- 'Override the default dnsmasq settings with those in this file')
+flags.DEFINE_string('dnsmasq_config_file', "",
+ 'Override the default dnsmasq settings with this file')
binary_name = os.path.basename(inspect.stack()[-1][1])