From: Steven Hardy Date: Mon, 4 Feb 2013 14:23:07 +0000 (+0000) Subject: heat docs : Fix version string issue X-Git-Tag: 2014.1~942 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=a43fcaab7b953b7712f395c51c5db69b8b3089b3;p=openstack-build%2Fheat-build.git heat docs : Fix version string issue Fix issue with release/version strings in doc build config which was causing doc builds to fail with an error. Fixes bug 1115269 Change-Id: Ia02d52f502d808d758a541e84056d5ac94aff8b8 Signed-off-by: Steven Hardy --- diff --git a/doc/source/conf.py b/doc/source/conf.py index 5ed01cf6..37cdabfb 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -53,9 +53,9 @@ copyright = u'2012, Heat Developers' from heat import version as heat_version # The full version, including alpha/beta/rc tags. -release = heat_version.version_string() +release = heat_version.version_info.release_string() # The short X.Y version -version = heat_version.canonical_version_string() +version = heat_version.version_info.version_string() # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.