summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorlingyongxu <lyxu@fiberhome.com>2017-06-09 18:04:12 +0800
committerlingyongxu <lyxu@fiberhome.com>2017-06-09 18:04:43 +0800
commit6a52a8456e936e9eb4af12a307fc0a103e8f4049 (patch)
treed7b5d097514d8adf03f1b7b17b933bd070ede60c /doc
parent1e06a64d4e68630bd285eec14db23fd6ef0e8742 (diff)
downloadkeystonemiddleware-6a52a8456e936e9eb4af12a307fc0a103e8f4049.tar.gz
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: I21ff7fe4da885d590303105c311aa9792fdaef2a
Diffstat (limited to 'doc')
-rw-r--r--doc/source/conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index a6eb2c4..323a030 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -161,8 +161,8 @@ html_static_path = ['_static']
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".')