minor prereq fix

This commit is contained in:
Eric Froemling 2020-07-26 01:40:45 -07:00
parent 147c8ec66b
commit 2ec0bd17be
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
### 1.5.24 (20159) ### 1.5.24 (20159)
- Misc bug fixes.. - Misc bug fixes.
### 1.5.23 (20146) ### 1.5.23 (20146)
- Fixed the shebang line in `bombsquad_server` file by using `-S` flag for `/usr/bin/env`. - Fixed the shebang line in `bombsquad_server` file by using `-S` flag for `/usr/bin/env`.

View File

@ -502,7 +502,7 @@ def checkenv() -> None:
check=False, check=False,
capture_output=True).returncode != 0: capture_output=True).returncode != 0:
raise RuntimeError( raise RuntimeError(
'pip (for {PYTHON_BIN}) is required; please install it.') f'pip (for {PYTHON_BIN}) is required; please install it.')
# Check for some required python modules. # Check for some required python modules.
for req in PIP_REQUIREMENTS: for req in PIP_REQUIREMENTS: