Skip to content
Snippets Groups Projects
Commit 3b2ae353 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[scripts][ci] Fix minor print typo

parent 19bfead3
No related branches found
No related tags found
No related merge requests found
Pipeline #26962 passed
...@@ -364,7 +364,7 @@ def base_build(order, python, dry_run): ...@@ -364,7 +364,7 @@ def base_build(order, python, dry_run):
for order, (pyver, recipe) in enumerate(recipes): for order, (pyver, recipe) in enumerate(recipes):
click.echo('\n' + (80*'=')) click.echo('\n' + (80*'='))
pytext = 'for python-%s' % pyver if pyver is not None else '' pytext = 'for python-%s ' % pyver if pyver is not None else ''
click.echo('Building "%s" %s(%d/%d)' % \ click.echo('Building "%s" %s(%d/%d)' % \
(recipe, pytext, order+1, len(recipes))) (recipe, pytext, order+1, len(recipes)))
click.echo((80*'=') + '\n') click.echo((80*'=') + '\n')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment