From 60624a62a4115acc970d5492cb4da0fe653c499a Mon Sep 17 00:00:00 2001
From: Brant Knudson <bknudson@us.ibm.com>
Date: Wed, 29 Apr 2015 09:46:09 -0500
Subject: [PATCH] Fix missing space in help text

The help text for the notification_driver option was missing a
space.

Change-Id: I7ccad49c308b04d8fd8e45cb2b0b937f2ca8b189
---
 oslo_messaging/notify/notifier.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/oslo_messaging/notify/notifier.py b/oslo_messaging/notify/notifier.py
index d52fde589..48aa37d86 100644
--- a/oslo_messaging/notify/notifier.py
+++ b/oslo_messaging/notify/notifier.py
@@ -30,8 +30,8 @@ _notifier_opts = [
     cfg.MultiStrOpt('notification_driver',
                     default=[],
                     help='The Drivers(s) to handle sending notifications. '
-                         'Possible values are messaging, messagingv2, routing,'
-                         'log, test, noop'),
+                         'Possible values are messaging, messagingv2, '
+                         'routing, log, test, noop'),
     cfg.ListOpt('notification_topics',
                 default=['notifications', ],
                 deprecated_name='topics',