Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Caspar van Leeuwen committed Sep 3, 2024
1 parent 4f6bd0d commit fa64b34
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions easybuild/easyblocks/generic/pythonpackage.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,11 +516,9 @@ def prepare_python(self):
self.log.info("Python command being used: %s", self.python_cmd)
elif self.require_python:
if req_py_majver is not None or req_py_minver is not None:
msg = "Failed to pick Python command that satisfies requirements in the EasyConfigs "
msg += "(req_maj_ver = %s, req_min_ver = %s)" % (req_maj_ver, req_min_ver)
raise EasyBuildError(
"Failed to pick python command that satisfies requirements in the EasyConfigs "
"(req_maj_ver = %s, req_min_ver = %s)", req_maj_ver, req_min_ver
"(req_py_majver = %s, req_py_minver = %s)", req_py_majver, req_py_minver
)
else:
raise EasyBuildError("Failed to pick Python command to use")
Expand Down

0 comments on commit fa64b34

Please sign in to comment.