Merge "Using https instead of http"

This commit is contained in:
Jenkins 2017-02-08 06:38:28 +00:00 committed by Gerrit Code Review
commit 5b78ceaed2

@ -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'http://git.openstack.org/cgit/openstack/Kolla/tree/deploy-guide/source' # noqa
giturl = u'https://git.openstack.org/cgit/openstack/Kolla/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,