From 27f2c450ba4b2d37a130bdaa1f934e5fd247552c Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Tue, 15 Feb 2022 09:06:27 -0600 Subject: [PATCH] fix finding the describe script during the doc build --- conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf.py b/conf.py index e4c29fb88c..7818d78917 100644 --- a/conf.py +++ b/conf.py @@ -31,7 +31,7 @@ from sphinx.transforms import SphinxTransform from docutils import nodes from sphinx import addnodes -tools_describe = (pathlib.Path(__file__).parent / "tools/describe").str() +tools_describe = str(pathlib.Path(__file__).parent / "tools/describe") # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the