use HTTPS for tarball links

The tarball server now supports HTTPS, so default to using it for all
generated links.

Change-Id: I2313cff088a3127ccc260dd82e24e9913b456aa6
This commit is contained in:
Doug Hellmann
2015-11-25 14:17:05 +00:00
parent c65511aad1
commit 5b94ca9888

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],
)