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 subprocess
import sys
import time
# 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
@ -140,8 +141,11 @@ html_static_path = []
# using the given strftime format.
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]
except Exception:
html_last_updated_fmt = time.ctime()
# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.