From 4ff10f676b24e97e9c38d4f0692e50300d95cfc1 Mon Sep 17 00:00:00 2001 From: Ian Bell Date: Mon, 7 Apr 2025 17:03:11 -0400 Subject: [PATCH] Print full tracebacks on exceptions --- Web/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Web/Makefile b/Web/Makefile index 036e4ff2..46dc7b28 100644 --- a/Web/Makefile +++ b/Web/Makefile @@ -41,12 +41,12 @@ clean: $(REMOVE_BUILD) html: - $(SPHINXBUILD) -j3 -b html $(ALLSPHINXOPTS) _build/html + $(SPHINXBUILD) -j3 -T -b html $(ALLSPHINXOPTS) _build/html @echo @echo "Build finished. The HTML pages are in _build/html." html_release: - $(SPHINXBUILD) -j3 -b html -t Release $(ALLSPHINXOPTS) _build/html + $(SPHINXBUILD) -j3 -T -b html -t Release $(ALLSPHINXOPTS) _build/html @echo @echo "Build finished. The HTML pages are in _build/html."