summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-06-12 10:51:54 +0000
committerGerrit Code Review <review@openstack.org>2017-06-12 10:51:54 +0000
commit4784d70a0ec64161af22b55ac43e2b49756618c4 (patch)
treed505eb15cdbdf25a66b06b645ec2be0744fbf134
parente6b225c5629a386a1089af9b11befe3d0414b6b8 (diff)
parent53b699b90a17f3546a0374b0a41ff071f8d466bc (diff)
downloadoslo-messaging-4784d70a0ec64161af22b55ac43e2b49756618c4.tar.gz
Merge "Fix html_last_updated_fmt for Python3."
-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 6008861..8d6082d 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -58,8 +58,7 @@ htmlhelp_basename = '%sdoc' % project
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".')