diff options
| author | Dean Troyer <dtroyer@gmail.com> | 2013-08-02 11:57:17 -0500 |
|---|---|---|
| committer | Dean Troyer <dtroyer@gmail.com> | 2013-08-02 12:11:49 -0500 |
| commit | af874890221b145a8cb423d3c1fc5dc133dbef13 (patch) | |
| tree | 980a89b50f30f3f6e7fa3a7e818e0bd9dff84539 /openstackclient/__init__.py | |
| parent | d67524897b55af99adfef0017a071d36a1f6003f (diff) | |
| download | python-openstackclient-af874890221b145a8cb423d3c1fc5dc133dbef13.tar.gz | |
Change version reporting to use pbr0.2.0
Gets rid of the hard-coded version string in shell.py
Change-Id: I8b818c9a8f1224669079141e7a7caf614e588d20
Diffstat (limited to 'openstackclient/__init__.py')
| -rw-r--r-- | openstackclient/__init__.py | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/openstackclient/__init__.py b/openstackclient/__init__.py index 85ac2501..89deee32 100644 --- a/openstackclient/__init__.py +++ b/openstackclient/__init__.py @@ -1,5 +1,3 @@ -# Copyright 2012-2013 OpenStack, LLC. -# # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at @@ -12,3 +10,13 @@ # License for the specific language governing permissions and limitations # under the License. # + +__all__ = ['__version__'] + +import pbr.version + +version_info = pbr.version.VersionInfo('python-openstackclient') +try: + __version__ = version_info.version_string() +except AttributeError: + __version__ = None |
