From f09a37e550930e84fc210674673a09989ebc9dd2 Mon Sep 17 00:00:00 2001 From: "pawnesh.kumar" Date: Thu, 6 Oct 2016 19:19:53 +0530 Subject: [PATCH] Correct invalid git URL in LogABug config Change-Id: I942338ce0811d12dcb83ec08853ad2a9b31f7af0 --- api-ref/source/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-ref/source/conf.py b/api-ref/source/conf.py index 50ad784476..34bdfceb89 100644 --- a/api-ref/source/conf.py +++ b/api-ref/source/conf.py @@ -79,7 +79,7 @@ release = version_info.release_string() version = version_info.version_string() # Config logABug feature -giturl = u'http://git.openstack.org/cgit/openstack/heat/api-ref/source' +giturl = u'http://git.openstack.org/cgit/openstack/heat/tree/api-ref/source' # source tree # html_context allows us to pass arbitrary values into the html template html_context = {'bug_tag': 'api-ref', @@ -161,7 +161,7 @@ pygments_style = 'sphinx' # using the given strftime format. # html_last_updated_fmt = '%b %d, %Y' git_cmd = ["git", "log", "--pretty=format:'%ad, commit %h'", "--date=local", - "-n1"] + "-n1"] try: html_last_updated_fmt = subprocess.Popen( git_cmd, stdout=subprocess.PIPE).communicate()[0]