diff --git a/bob/devtools/scripts/ci.py b/bob/devtools/scripts/ci.py index 1bf30abbe03012cb68e0b1accddbeb1ffc0c0ded..763cec4072280eb16656abb60a8225c320b9ca34 100644 --- a/bob/devtools/scripts/ci.py +++ b/bob/devtools/scripts/ci.py @@ -364,7 +364,7 @@ def base_build(order, python, dry_run): for order, (pyver, recipe) in enumerate(recipes): 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)' % \ (recipe, pytext, order+1, len(recipes))) click.echo((80*'=') + '\n')