summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-01-27 23:47:59 +0000
committerGerrit Code Review <review@openstack.org>2016-01-27 23:47:59 +0000
commit8748669941985280079a5ad2f20c8e05afeefd07 (patch)
tree4d60d2e1cbee9194ad81922980db6cc0c0e0c342
parent3912f9ec31455d53a19a164e4d95e15bf9848ff0 (diff)
parentb20cdea9b3bb9b4c2f7d67acc399073266083736 (diff)
downloadoslo-incubator-8748669941985280079a5ad2f20c8e05afeefd07.tar.gz
Merge "Fixing the deprecated library function."
-rw-r--r--doc/source/conf.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 69689b37..fcc3ecd2 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -1,6 +1,7 @@
from __future__ import print_function
+import subprocess
import sys
import os
import fileinput
@@ -76,8 +77,11 @@ pygments_style = 'sphinx'
# Output file base name for HTML help builder.
htmlhelp_basename = '%sdoc' % project
-git_cmd = "git log --pretty=format:'%ad, commit %h' --date=local -n1"
-html_last_updated_fmt = os.popen(git_cmd).read()
+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]
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass