From b2a2990575445086fd5a33c4bb932aa7dd2f4ff1 Mon Sep 17 00:00:00 2001 From: KATO Tomoyuki Date: Tue, 29 Sep 2015 09:59:43 +0900 Subject: [PATCH] Fix typo: add a missing white space Change-Id: I10397282c17c9ea2487984448fcec1aa33319356 --- etc/ironic/ironic.conf.sample | 2 +- ironic/common/keystone.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/ironic/ironic.conf.sample b/etc/ironic/ironic.conf.sample index 6636856d756..0cab3053e34 100644 --- a/etc/ironic/ironic.conf.sample +++ b/etc/ironic/ironic.conf.sample @@ -1167,7 +1167,7 @@ # Options defined in ironic.common.keystone # -# The region used for getting endpoints of OpenStackservices. +# The region used for getting endpoints of OpenStack services. # (string value) #region_name= diff --git a/ironic/common/keystone.py b/ironic/common/keystone.py index 408790844f7..46a5e64db18 100644 --- a/ironic/common/keystone.py +++ b/ironic/common/keystone.py @@ -25,7 +25,7 @@ CONF = cfg.CONF keystone_opts = [ cfg.StrOpt('region_name', help=_('The region used for getting endpoints of OpenStack' - 'services.')), + ' services.')), ] CONF.register_opts(keystone_opts, group='keystone')