From 682b60b86111b9697ab4b7ac0fd0bd84d8757119 Mon Sep 17 00:00:00 2001
From: Allen Gao <wanlong.gao@easystack.cn>
Date: Wed, 3 Feb 2016 18:10:13 +0800
Subject: [PATCH] Fix config help message

Adding the necessary spaces.
TrivialFix

Change-Id: I3858ed1cb978bcf8aefd4a85f7c802607876b36e
---
 kolla/common/config.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kolla/common/config.py b/kolla/common/config.py
index b5e2fb5982..9a3da19c50 100644
--- a/kolla/common/config.py
+++ b/kolla/common/config.py
@@ -140,7 +140,7 @@ _BASE_OPTS = [
                help='The MAINTAINER field'),
     cfg.ListOpt('rpm_setup_config', default=[DELOREAN, DELOREAN_DEPS],
                 deprecated_group='kolla-build',
-                help=('Comma separated list of .rpm or .repo file(s)'
+                help=('Comma separated list of .rpm or .repo file(s) '
                       'or URL(s) to install before building containers'))
 ]
 
@@ -244,7 +244,7 @@ def get_source_opts(type_=None, location=None, reference=None):
             cfg.StrOpt('location', default=location,
                        help='The location for source install'),
             cfg.StrOpt('reference', default=reference,
-                       help=('Git reference to pull, commit sha, tag'
+                       help=('Git reference to pull, commit sha, tag '
                              'or branch name'))]