From fccc2d80bf2ed57321897f18837c6019bfbb1f18 Mon Sep 17 00:00:00 2001 From: yanpeifei Date: Thu, 2 Nov 2017 10:04:01 +0800 Subject: [PATCH] fix kolla giturl. Old giturl like error. Change-Id: I67cd7126fb250c4bc6f26c0d2558b0994c2438f0 --- deploy-guide/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy-guide/source/conf.py b/deploy-guide/source/conf.py index bf6eedc697..010cddad83 100644 --- a/deploy-guide/source/conf.py +++ b/deploy-guide/source/conf.py @@ -74,7 +74,7 @@ release = '0.1' # from git log. # bug_tag: Tag for categorizing the bug. Must be set manually. # These variables are passed to the logabug code via html_context. -giturl = u'https://git.openstack.org/cgit/openstack/Kolla/tree/deploy-guide/source' # noqa +giturl = u'https://git.openstack.org/cgit/openstack/kolla-ansible/tree/deploy-guide/source' # noqa git_cmd = "/usr/bin/git log | head -n1 | cut -f2 -d' '" gitsha = os.popen(git_cmd).read().strip('\n') html_context = {"gitsha": gitsha, "bug_tag": bug_tag,