Fix package name in pbr VersionInfo call

The correct package name in "python-k8sclient". Otherwise pbr's try to get
the version from pkg_resources will not work.

Change-Id: I90424e59c051564d4639147cc418c218485e09b3
This commit is contained in:
Ralf Haferkamp 2016-04-19 17:06:42 +02:00
parent 9a07ef5129
commit 9e124dcc44
1 changed files with 1 additions and 2 deletions

View File

@ -15,5 +15,4 @@
import pbr.version
__version__ = pbr.version.VersionInfo(
'k8sclient').version_string()
__version__ = pbr.version.VersionInfo('python-k8sclient').version_string()