From cb899e7daf3094137b2c151f2b63781cc4c6d60b Mon Sep 17 00:00:00 2001
From: Yannick DAYER <yannick.dayer@idiap.ch>
Date: Fri, 1 Jul 2022 11:48:35 +0200
Subject: [PATCH] [fix] click echo to not fail in bdt dev install

click.echo does not behave like print: Only one argument will be printed
The next args are destination file, and some flags.
---
 bob/devtools/scripts/development.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bob/devtools/scripts/development.py b/bob/devtools/scripts/development.py
index eab9b528..01012a97 100644
--- a/bob/devtools/scripts/development.py
+++ b/bob/devtools/scripts/development.py
@@ -45,7 +45,7 @@ def install(env_name, folders):
             cmd,
             shell=True,
         )
-        click.echo("Installed package using the command:", cmd)
+        click.echo(f"Installed package using the command: {cmd}")
 
 
 @click.command(epilog="See bdt dev --help for examples of this command.")
-- 
GitLab