From 188615d3ebb3edbe1bce5dc355dc6c5398d8e10c Mon Sep 17 00:00:00 2001 From: Serg Melikyan Date: Mon, 9 Sep 2013 10:44:04 +0400 Subject: [PATCH] Fixed issue with package name Package name should be same as repository name (it is important for CI) Change-Id: I7ee8dfedb3487b16f111b35d1b8cc1a7d4dbfedf --- muranocommon/messaging/__init__.py | 2 +- muranocommon/messaging/message.py | 1 - setup.cfg | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/muranocommon/messaging/__init__.py b/muranocommon/messaging/__init__.py index fcb15f4..2f85c16 100644 --- a/muranocommon/messaging/__init__.py +++ b/muranocommon/messaging/__init__.py @@ -17,4 +17,4 @@ from message import Message from subscription import Subscription from mqclient import MqClient -__all__ = ['Message', 'Subscription', 'MqClient'] \ No newline at end of file +__all__ = ['Message', 'Subscription', 'MqClient'] diff --git a/muranocommon/messaging/message.py b/muranocommon/messaging/message.py index 519d000..67dc8a7 100644 --- a/muranocommon/messaging/message.py +++ b/muranocommon/messaging/message.py @@ -32,7 +32,6 @@ class Message(object): self.body = None log.exception(e) - @property def body(self): return self._body diff --git a/setup.cfg b/setup.cfg index 59a6575..7050d7d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -name = muranocommon +name = murano-common summary = Shared library for Murano description-file = README.rst