From c678ed2d39eaefe86ffd918bd5d674d972041abe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20S=C3=B8ndergaard?= Date: Thu, 16 Apr 2020 09:12:23 +0200 Subject: [PATCH] Fix btd (#272) * Fix buildthedocs file * Build dirhtml --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 10198164..8f7a6e6e 100644 --- a/noxfile.py +++ b/noxfile.py @@ -41,4 +41,4 @@ def docs(session): session.chdir("docs") if os.path.exists("_build"): shutil.rmtree("_build") - session.run("sphinx-build", ".", "_build/html") + session.run("sphinx-build", "-b", "dirhtml", ".", "_build/html")