Fix doc generation for python 3

Fix the Sphinx html_last_updated_fmt for Python3. The
html_last_updated_fmt option is interpeted as a byte string in
python3, causing Sphinx build to break. This patch makes it
utf-8 string.

Change-Id: I399b769c3d636e40094837764da6a914132a779c
This commit is contained in:
Sharat Sharma 2017-04-17 16:19:02 +05:30
parent dcad014cda
commit e4ad2e1a21
1 changed files with 2 additions and 2 deletions

View File

@ -131,8 +131,8 @@ html_theme = 'nature'
git_cmd = ["git", "log", "--pretty=format:'%ad, commit %h'", "--date=local",
"-n1"]
try:
html_last_updated_fmt = subprocess.Popen(
git_cmd, stdout=subprocess.PIPE).communicate()[0]
html_last_updated_fmt = subprocess.check_output(
git_cmd).decode('utf-8')
except Exception:
warnings.warn('Cannot get last updated time from git repository. '
'Not setting "html_last_updated_fmt".')