From b2281119259681f04ffe178579efcb16a9b06f81 Mon Sep 17 00:00:00 2001 From: svlandeg Date: Tue, 30 Jun 2020 14:54:45 +0200 Subject: [PATCH] fix funny printing --- spacy/cli/project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/cli/project.py b/spacy/cli/project.py index f0315dfe0..1c6d36edf 100644 --- a/spacy/cli/project.py +++ b/spacy/cli/project.py @@ -609,7 +609,7 @@ def run_commands( elif len(command) and command[0] in ("pip", "pip3"): command = [sys.executable, "-m", "pip", *command[1:]] if not silent: - print(" ".join(command)) + print(f"Running command: {command}") run_command(command)