Fix message about missing portalocker

Change-Id: Ia82c0aab7c9085eee8a07c4a15485c0804e65e5a
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
This commit is contained in:
Oliver Wolff 2019-10-15 13:34:46 +02:00 committed by Alexandru Croitor
parent 0eb4dcad89
commit ca33f45d70

View File

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