diff options
| author | Kevin Bringard <kbringard@attinteractive.com> | 2011-05-02 13:19:58 -0600 |
|---|---|---|
| committer | Kevin Bringard <kbringard@attinteractive.com> | 2011-05-02 13:19:58 -0600 |
| commit | c0d046ccb17c44ca66498d4b50e573c835b3d508 (patch) | |
| tree | 1ff50076d2580b81562f0ef2717e7a3c907730df | |
| parent | add207150a68b312614604281ca079164304110d (diff) | |
| download | nova-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.py | 4 |
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]) |
