summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-06-07 09:16:25 +0000
committerGerrit Code Review <review@openstack.org>2017-06-07 09:16:25 +0000
commitdaa99ed5fe1df548c26feff68b45bda7ac94ea25 (patch)
treea6355961e52175790bfbc8373a2e23f38c171adc
parent9dd14ef70fcf8400e0e7e55ad8122e5547557cf3 (diff)
parentb456e923aeb14e0de131cc35a02d9e9b69c0145e (diff)
downloadpython-keystoneclient-daa99ed5fe1df548c26feff68b45bda7ac94ea25.tar.gz
Merge "Fix html_last_updated_fmt for Python3"3.11.0
-rw-r--r--doc/source/conf.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index cda0c77..a6f84e1 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -151,8 +151,7 @@ modindex_common_prefix = ['keystoneclient.']
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".')