Fallback if git is absent

When building packages if git is absent, then we should
fall back to a safe default.

Closes-Bug: #1552251
Change-Id: I9b21700f942f5d1f9302b3af04d6d24e1afba1b3
This commit is contained in:
Davanum Srinivas 2016-03-02 16:28:43 -05:00
parent 54d58a7758
commit 5f8d6def01
1 changed files with 7 additions and 3 deletions

View File

@ -15,6 +15,7 @@ import datetime
import os import os
import subprocess import subprocess
import sys import sys
import time
# If extensions (or modules to document with autodoc) are in another directory, # If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the # add these directories to sys.path here. If the directory is relative to the
@ -139,9 +140,12 @@ html_static_path = []
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format. # using the given strftime format.
git_cmd = ["git", "log", "--pretty=format:'%ad, commit %h'", "--date=local", git_cmd = ["git", "log", "--pretty=format:'%ad, commit %h'", "--date=local",
"-n1"] "-n1"]
html_last_updated_fmt = subprocess.Popen( try:
git_cmd, stdout=subprocess.PIPE).communicate()[0] html_last_updated_fmt = subprocess.Popen(
git_cmd, stdout=subprocess.PIPE).communicate()[0]
except Exception:
html_last_updated_fmt = time.ctime()
# If true, SmartyPants will be used to convert quotes and dashes to # If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities. # typographically correct entities.