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