Fix PEP8 issues and incorrect version/release details

Change-Id: Ia54c7c717e7347cf9d2241aa5ceb98e83c4615af
This commit is contained in:
pawnesh.kumar
2016-10-08 11:32:39 +05:30
committed by pawnesh kumar
parent c4aca72927
commit 897fd1bdac

View File

@@ -13,6 +13,7 @@
# import sys, os # import sys, os
import pbr.version
# If extensions (or modules to document with autodoc) are in another directory, # If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the # add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here. # documentation root, use os.path.abspath to make it absolute, like shown here.
@@ -47,10 +48,9 @@ copyright = u'2013, OpenStack Foundation'
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
# built documents. # built documents.
# #
# The short X.Y version. version_info = pbr.version.VersionInfo('python-mistralclient')
version = '0.01' release = version_info.release_string()
# The full version, including alpha/beta/rc tags. version = version_info.version_string()
release = '0.01'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.