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
+1 -1
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."
)