From 6aece20925f60ea8d02e6ca1898a6761689720dd Mon Sep 17 00:00:00 2001 From: derAnfaenger Date: Tue, 12 Sep 2017 16:47:22 +0200 Subject: [PATCH] provision: Indent venv activation command. --- tools/provision | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/provision b/tools/provision index 870243b..dbda5c2 100755 --- a/tools/provision +++ b/tools/provision @@ -54,7 +54,7 @@ the Python version this command is executed with.""" raise OSError("The command `pip install -r {}` failed. Dependencies not installed!" .format(os.path.join(base_dir, 'requirements.txt'))) - print("{green}Success!{end_format} Run\n{bold}source {activate}{end_format}\nto activate virtualenv.".format( + print("{green}Success!{end_format} Run\n {bold}source {activate}{end_format}\nto activate virtualenv.".format( green='\033[92m', bold='\033[1m', end_format='\033[0m', activate=os.path.join(base_dir, venv_dir, venv_exec_dir, 'activate')))