fix funny printing

This commit is contained in:
svlandeg 2020-06-30 14:54:45 +02:00
parent 8e20505970
commit b228111925

View File

@ -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)