From 650555cec0838a7f6255d72dc9121e45445b3c7a Mon Sep 17 00:00:00 2001 From: Bradley Jones Date: Thu, 15 Jan 2015 07:25:56 -0800 Subject: [PATCH] Fix missing spaces in error messages Change-Id: If29a7ebe0b3ad44b728e17ce0c8ceb271a08f684 Closes-bug: 1411441 --- neutron/plugins/brocade/NeutronPlugin.py | 2 +- neutron/plugins/midonet/plugin.py | 2 +- neutron/quota.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/neutron/plugins/brocade/NeutronPlugin.py b/neutron/plugins/brocade/NeutronPlugin.py index de19083f2..8c1dc2b6a 100644 --- a/neutron/plugins/brocade/NeutronPlugin.py +++ b/neutron/plugins/brocade/NeutronPlugin.py @@ -69,7 +69,7 @@ SWITCH_OPTS = [cfg.StrOpt('address', default='', ] PHYSICAL_INTERFACE_OPTS = [cfg.StrOpt('physical_interface', default='eth0', - help=_('The network interface to use when creating' + help=_('The network interface to use when creating ' 'a port')) ] diff --git a/neutron/plugins/midonet/plugin.py b/neutron/plugins/midonet/plugin.py index 0082ecd32..67d46d019 100644 --- a/neutron/plugins/midonet/plugin.py +++ b/neutron/plugins/midonet/plugin.py @@ -28,7 +28,7 @@ midonet_opts = [ help=_('MidoNet admin password.')), cfg.StrOpt('project_id', default='77777777-7777-7777-7777-777777777777', - help=_('ID of the project that MidoNet admin user' + help=_('ID of the project that MidoNet admin user ' 'belongs to.')) ] diff --git a/neutron/quota.py b/neutron/quota.py index 8e38235f3..e2187ad19 100644 --- a/neutron/quota.py +++ b/neutron/quota.py @@ -40,7 +40,7 @@ quota_opts = [ 'A negative value means unlimited.')), cfg.IntOpt('quota_network', default=10, - help=_('Number of networks allowed per tenant.' + help=_('Number of networks allowed per tenant. ' 'A negative value means unlimited.')), cfg.IntOpt('quota_subnet', default=10, -- 2.45.2