Correct tagged version docs build
A variable reassignment in conf.py caused errors when we try to build release versions of docs. Correct that by swapping the order of use and assignment. Change-Id: I6923042074b540c707881b370416f2620ef22045
This commit is contained in:
parent
e824242afe
commit
a6ce77acff
@ -68,8 +68,8 @@ pygments_style = 'sphinx'
|
||||
html_theme = "sphinx_rtd_theme"
|
||||
|
||||
if version.is_release:
|
||||
version = version.release_string
|
||||
current_version = version.release_string
|
||||
version = version.release_string
|
||||
versions = [('latest', f'{doc_root}/')]
|
||||
else:
|
||||
# Uncomment this if we want to use the in-development version
|
||||
|
Loading…
x
Reference in New Issue
Block a user