Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add missing spaces
  • Loading branch information
RasmusWL committed Sep 21, 2022
commit 93ba53f2de80a13ee5ef48ee7a6f68de121da298
4 changes: 2 additions & 2 deletions python-setup/auto_install_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ def install_packages(codeql_base_dir) -> Optional[str]:
# error message than a traceback + `No such file or directory: 'python2'`
if shutil.which("python2") is None:
sys.exit(
"package installation failed: we detected this code as Python 2, but 'python2' executable was not available."
"package installation failed: we detected this code as Python 2, but 'python2' executable was not available. "
"To enable automatic package installation, please install 'python2' before the 'github/codeql-action/init' step, "
"such as running 'sudo apt install python2' (Ubuntu 22.04)."
"such as running 'sudo apt install python2' (Ubuntu 22.04). "
"If your code is not Python 2, but actually Python 3, please file a bug report at https://github.com/github/codeql-action/issues/new"
)

Expand Down