diff options
author | Jenkins <jenkins@review.openstack.org> | 2014-12-23 05:42:41 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2014-12-23 05:42:41 +0000 |
commit | fcec1d4e4ca083c48bb441521398b3f4015b35ed (patch) | |
tree | 1cb46e4e58c59488cd079524b58a48b02ddd902b /nova/console | |
parent | 709e167ae2e88cf5cb1d0381f94de85bf8730f1e (diff) | |
parent | bc411531a03725aaa317453b5e5a0d910af8ea2f (diff) | |
download | nova-fcec1d4e4ca083c48bb441521398b3f4015b35ed.tar.gz |
Merge "Config bindings: remove redundant brackets"
Diffstat (limited to 'nova/console')
-rw-r--r-- | nova/console/serial.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nova/console/serial.py b/nova/console/serial.py index 18476e737b..3b4c6a37fe 100644 --- a/nova/console/serial.py +++ b/nova/console/serial.py @@ -43,12 +43,12 @@ serial_opts = [ help='Location of serial console proxy.'), cfg.StrOpt('listen', default='127.0.0.1', - help=('IP address on which instance serial console ' - 'should listen')), + help='IP address on which instance serial console ' + 'should listen'), cfg.StrOpt('proxyclient_address', default='127.0.0.1', - help=('The address to which proxy clients ' - '(like nova-serialproxy) should connect')), + help='The address to which proxy clients ' + '(like nova-serialproxy) should connect'), ] CONF = cfg.CONF |