From f611530e96f879662b6ae2c4febc713d0a7afa8d Mon Sep 17 00:00:00 2001 From: Stan Lagun Date: Tue, 30 Jul 2013 09:56:19 +0400 Subject: [PATCH] Exception: Versioning for this project requires either an sdist tarball, or access to an upstream git repository. Change-Id: I0ad13d2cfdf245c4106bad751f1f74c9e6f3e6f6 --- muranoconductor/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/muranoconductor/__init__.py b/muranoconductor/__init__.py index edc03dd..66c8c4c 100644 --- a/muranoconductor/__init__.py +++ b/muranoconductor/__init__.py @@ -13,8 +13,8 @@ # under the License. import gettext -gettext.install('conductor', './conductor/locale', unicode=1) +gettext.install('muranoconductor', './muranoconductor/locale', unicode=1) from pbr import version -__version_info = version.VersionInfo('conductor') +__version_info = version.VersionInfo('murano-conductor') __version__ = __version_info.cached_version_string()