From 2ec0bd17be1ecfddfcd6e550507467560dbba9b6 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Sun, 26 Jul 2020 01:40:45 -0700 Subject: [PATCH] minor prereq fix --- CHANGELOG.md | 2 +- tools/batools/build.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8289ca3f..75a57e7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ ### 1.5.24 (20159) -- Misc bug fixes.. +- Misc bug fixes. ### 1.5.23 (20146) - Fixed the shebang line in `bombsquad_server` file by using `-S` flag for `/usr/bin/env`. diff --git a/tools/batools/build.py b/tools/batools/build.py index f7e62995..9668fc60 100644 --- a/tools/batools/build.py +++ b/tools/batools/build.py @@ -502,7 +502,7 @@ def checkenv() -> None: check=False, capture_output=True).returncode != 0: 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. for req in PIP_REQUIREMENTS: