summaryrefslogtreecommitdiff
path: root/cinderclient/__init__.py
diff options
context:
space:
mode:
authorGorka Eguileor <geguileo@redhat.com>2017-03-08 17:50:27 +0100
committerGorka Eguileor <geguileo@redhat.com>2017-03-15 13:42:49 +0100
commitc022b73faf479346f1d73edf417cb5d8a8f33195 (patch)
tree3a49e1a0f469234dae650ed3f08a0fa64dcdabaa /cinderclient/__init__.py
parent3b60eba9aa022a5f5a7b84ce236626f31493485b (diff)
downloadpython-cinderclient-c022b73faf479346f1d73edf417cb5d8a8f33195.tar.gz
Fix pep8 errors
There are some PEP8 errors that are not caught by our gate because of the pep8 package version installed by hacking. This patch fixes E402, W503, and F999 erors from our codebase. Change-Id: I0b86730b1493f161645a87c3daa91ec3d774d3b1
Diffstat (limited to 'cinderclient/__init__.py')
-rw-r--r--cinderclient/__init__.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/cinderclient/__init__.py b/cinderclient/__init__.py
index aa76045..dac2073 100644
--- a/cinderclient/__init__.py
+++ b/cinderclient/__init__.py
@@ -12,11 +12,12 @@
# License for the specific language governing permissions and limitations
# under the License.
-__all__ = ['__version__']
-
import pbr.version
+__all__ = ['__version__']
+
+
version_info = pbr.version.VersionInfo('python-cinderclient')
# We have a circular import problem when we first run python setup.py sdist
# It's harmless, so deflect it.