fix: remove duplicate LaTeX imports, add row bounds safety, improve error messaging (#252)

This commit is contained in:
Adwait M.
2026-07-29 19:20:40 +02:00
committed by GitHub
parent e3af401087
commit 5a9f6c42a4
4 changed files with 14 additions and 14 deletions
+3 -1
View File
@@ -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()