From eb94be8834f8d572fa8e1f83e81b260102fa0c88 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Mon, 24 Jun 2013 07:12:16 +0100 Subject: [PATCH] Make Notifier public at top-level --- oslo/messaging/__init__.py | 1 + oslo/messaging/notify/__init__.py | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/oslo/messaging/__init__.py b/oslo/messaging/__init__.py index fb17872ff..83529c5b4 100644 --- a/oslo/messaging/__init__.py +++ b/oslo/messaging/__init__.py @@ -14,6 +14,7 @@ # under the License. from .exceptions import * +from .notify import * from .rpc import * from .serializer import * from .server import * diff --git a/oslo/messaging/notify/__init__.py b/oslo/messaging/notify/__init__.py index b1541fdb7..afce81b0c 100644 --- a/oslo/messaging/notify/__init__.py +++ b/oslo/messaging/notify/__init__.py @@ -12,3 +12,7 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. + +__all__ = ['Notifier'] + +from .notifier import *