Merge "use HTTPS for tarball links"

This commit is contained in:
Jenkins 2015-11-27 00:19:09 +00:00 committed by Gerrit Code Review
commit 3e1f8525fe

View File

@ -135,7 +135,7 @@ class DeliverableDirectiveBase(rst.Directive):
@staticmethod
def _tarball_link(version, repo):
return '`{v} <{s}/{n}/{n}-{v}.tar.gz>`__'.format(
s='http://tarballs.openstack.org',
s='https://tarballs.openstack.org',
v=version,
n=repo.rsplit('/')[-1],
)