Skip to content

Commit

Permalink
Capitalize Python everywhere, to keep things consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
bedroge authored Sep 6, 2024
1 parent d9358c4 commit 71c4adc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easybuild/easyblocks/generic/pythonbundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,12 @@ def prepare_step(self, *args, **kwargs):

python_cmd = pick_python_cmd(req_maj_ver=req_py_majver, req_min_ver=req_py_minver)

# If pick_python_cmd didn't find a (system) python command, we should raise an error
# If pick_python_cmd didn't find a (system) Python command, we should raise an error
if python_cmd:
self.log.info("Python command being used: %s", python_cmd)
else:
raise EasyBuildError(
"Failed to pick python command that satisfies requirements in the EasyConfigs "
"Failed to pick Python command that satisfies requirements in the easyconfig "
"(req_py_majver = %s, req_py_minver = %s)", req_py_majver, req_py_minver
)

Expand Down

0 comments on commit 71c4adc

Please sign in to comment.