Enable tag-based full version reporting via pbr

Modified barbican/version.py to set __version__ to the full version rather
than a shortened version as before.

Change-Id: Id312d5c92b18143e77e6d8917248674c6ed76bc8
This commit is contained in:
jfwood 2014-01-22 17:07:39 -06:00
parent f6df3af1ce
commit 9d9183f1bc
1 changed files with 1 additions and 1 deletions

View File

@ -16,4 +16,4 @@
import pbr.version
version_info = pbr.version.VersionInfo('barbican')
__version__ = version_info.version_string()
__version__ = version_info.release_string()