fix tp.py error report bug

This commit is contained in:
madeline 2023-05-31 05:54:08 -06:00
parent df30e3d195
commit ed7e61ddfc
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."
)