Merge pull request #342 from qwertyquerty/tp.py-bug

Fix tp.py module not found error report bug
This commit is contained in:
hatal175 2023-05-31 17:46:05 +03:00 committed by GitHub
commit 7b7dba2c12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ from pathlib import Path
def _handle_import_error(ex: ImportError):
MISSING_PREREQUISITES = (
f"Missing prerequisite python module {e}.\n"
f"Missing prerequisite python module {ex}.\n"
f"Run `python3 -m pip install --user -r tools/requirements.txt` to install prerequisites."
)