From 046c7e64bfeabbaa56849f232fb7ddf7d704435f Mon Sep 17 00:00:00 2001 From: zhurong Date: Thu, 29 Dec 2016 16:01:16 +0800 Subject: [PATCH] Correct the package name Now the murano-pkg-check gives the error: Exception: Versioning for this project requires either an sdist tarball, or access to an upstream git repository. Are you sure that git is installed? This patch correct the package name when get the package version. Change-Id: I33500b3527e21a513f9130f55f0b54ba0e047d5f Closes-Bug: #1653060 --- muranopkgcheck/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/muranopkgcheck/__init__.py b/muranopkgcheck/__init__.py index cb5e5a7..d772d95 100644 --- a/muranopkgcheck/__init__.py +++ b/muranopkgcheck/__init__.py @@ -16,4 +16,4 @@ import pbr.version __version__ = pbr.version.VersionInfo( - 'muranopkgcheck').version_string() + 'murano-pkg-check').version_string()