Fix html_last_updated_fmt for Python3

Fix the Sphinx html_last_updated_fmt for Python3. The 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: I65fabcc43afe80cf30e4555e87d0251b24ab8c65
This commit is contained in:
blue55 2017-07-06 10:46:03 +08:00
parent f8123a54a1
commit d46714bdbe

View File

@ -126,9 +126,12 @@ man_pages = []
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
git_cmd = ["git", "log", "--pretty=format:'%ad, commit %h'", "--date=local",
"-n1"]
html_last_updated_fmt = subprocess.Popen(
git_cmd, stdout=subprocess.PIPE).communicate()[0]
"-n1"]
try:
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".')
# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.