From 3b2ae35375696abfb3cbfe87e7bbdf86e48a1e46 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Thu, 14 Feb 2019 15:00:07 +0100 Subject: [PATCH] [scripts][ci] Fix minor print typo --- bob/devtools/scripts/ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/devtools/scripts/ci.py b/bob/devtools/scripts/ci.py index 1bf30abb..763cec40 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') -- GitLab