Merge "Fix the pypi element for multiple mirror URLs"

This commit is contained in:
Zuul 2019-08-13 07:04:20 +00:00 committed by Gerrit Code Review
commit 24e620ae6d
1 changed files with 4 additions and 2 deletions

View File

@ -57,8 +57,10 @@ def main():
output.write('trusted-host = %s\n' % (urlparse(indices[0]).hostname,))
if retries is not None:
output.write('retries = %s\n' % retries)
for index in indices[1:]:
output.write('extra-index-url = %s\n' % (index,))
if len(indices) > 1:
output.write('extra-index-url =\n')
for index in indices[1:]:
output.write(' %s\n' % (index,))
with open(home + '/.pydistutils.cfg', 'wt') as output:
output.write('[easy_install]\n')
output.write('index_url = %s\n' % (easy_index,))