mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 00:26:26 +00:00
fix: remove duplicate LaTeX imports, add row bounds safety, improve error messaging (#252)
This commit is contained in:
+3
-1
@@ -22,7 +22,9 @@ def run_tool(command):
|
||||
).stdout
|
||||
except FileNotFoundError as exc:
|
||||
raise VerificationError(
|
||||
f"required command '{command[0]}' was not found; install poppler-utils"
|
||||
f"required command '{command[0]}' was not found. "
|
||||
"Install poppler-utils (macOS: brew install poppler, "
|
||||
"Debian/Ubuntu: apt install poppler-utils, Windows: choco install poppler)"
|
||||
) from exc
|
||||
except subprocess.CalledProcessError as exc:
|
||||
detail = (exc.stderr or "").strip() or (exc.stdout or "").strip()
|
||||
|
||||
Reference in New Issue
Block a user