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: Ica90e9c0cc20aa590ad0177a0ceab72f4f4c6b5b
This commit is contained in:
James E. Blair 2022-03-21 10:28:29 -07:00
parent 202ca394fb
commit 6acbcbb2f9
1 changed files with 1 additions and 1 deletions

View File

@ -67,8 +67,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