From 25820c9bb2e20a6fd621ea33e2ae99a3e394a43d Mon Sep 17 00:00:00 2001 From: Steve Howell Date: Fri, 19 Jan 2018 07:50:40 -0500 Subject: [PATCH] provision: Do not even suggest the --force option. Suggesting to users that they use '--force' during provision is just asking for trouble. We will probably want to deprecate that altogether soon. --- tools/provision | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/provision b/tools/provision index 609cc71..344eb19 100755 --- a/tools/provision +++ b/tools/provision @@ -40,7 +40,7 @@ the Python version this command is executed with.""" if py_version <= (3, 1) and (not options.force): print(red + "Provision failed: Cannot create venv with outdated Python version ({}).\n" - "Run this script with --force if you want to proceed anyway." + "Maybe try `python3 tools/provision`." .format(py_version_output.strip()) + end_format) sys.exit(1)