From 317641c42f006eaec644c3524da63b63ab6771e1 Mon Sep 17 00:00:00 2001 From: Gregory Haynes Date: Thu, 28 Jul 2016 01:56:48 +0000 Subject: [PATCH] Fix syntax error on notification listener docs We are missing a list delimiter in our docs example for a notification listener. Change-Id: Ib8b9c35e7bff241bf8473a98a2ee188da7e194e4 --- oslo_messaging/notify/listener.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oslo_messaging/notify/listener.py b/oslo_messaging/notify/listener.py index 5f858c50e..386e79e62 100644 --- a/oslo_messaging/notify/listener.py +++ b/oslo_messaging/notify/listener.py @@ -59,7 +59,7 @@ A simple example of a notification listener with multiple endpoints might be:: transport = oslo_messaging.get_notification_transport(cfg.CONF) targets = [ - oslo_messaging.Target(topic='notifications') + oslo_messaging.Target(topic='notifications'), oslo_messaging.Target(topic='notifications_bis') ] endpoints = [