From ca33f45d70d451dd370df7ef551e6bba1975d43b Mon Sep 17 00:00:00 2001 From: Oliver Wolff Date: Tue, 15 Oct 2019 13:34:46 +0200 Subject: [PATCH] Fix message about missing portalocker MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ia82c0aab7c9085eee8a07c4a15485c0804e65e5a Reviewed-by: MÃ¥rten Nordheim --- util/cmake/condition_simplifier_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/cmake/condition_simplifier_cache.py b/util/cmake/condition_simplifier_cache.py index 4afd91597b2..58cd5b88c5f 100644 --- a/util/cmake/condition_simplifier_cache.py +++ b/util/cmake/condition_simplifier_cache.py @@ -113,7 +113,7 @@ def open_file_safe(file_path: str, mode: str = "r+"): except ImportError: print( "The conversion script is missing a required package: portalocker. Please run " - "python -m pip install requirements.txt to install the missing dependency." + "python -m pip install -r requirements.txt to install the missing dependency." ) exit(1)