Fix html_last_updated_fmt for Python3

html_last_updated_fmt option is interpreted as a
byte string in python3, causing Sphinx build to break.
This patch makes it utf-8 string.

Change-Id: Ic85b544a5d91f0f820737480fd123cbebdc94894
This commit is contained in:
Vu Cong Tuan 2017-06-16 21:29:42 +07:00
parent 8c54a0cd9d
commit 65f76051d5
1 changed files with 1 additions and 2 deletions

View File

@ -277,8 +277,7 @@ html_static_path = ['_static']
# html_last_updated_fmt = '%b %d, %Y'
git_cmd = ["git", "log", "--pretty=format:'%ad, commit %h'", "--date=local",
"-n1"]
html_last_updated_fmt = subprocess.check_output(git_cmd,
stdin=subprocess.PIPE)
html_last_updated_fmt = subprocess.check_output(git_cmd).decode('utf-8')
# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.