From a34120329a31d6664b3fa506371f8ad6a5778aa2 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 29 Jun 2024 08:38:16 -0700 Subject: [PATCH] Update doc script --- support/python/mkdocstrings_handlers/cxx/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/python/mkdocstrings_handlers/cxx/__init__.py b/support/python/mkdocstrings_handlers/cxx/__init__.py index b3d91bf8..32e0f75e 100644 --- a/support/python/mkdocstrings_handlers/cxx/__init__.py +++ b/support/python/mkdocstrings_handlers/cxx/__init__.py @@ -158,8 +158,8 @@ class CxxHandler(BaseHandler): # Run doxygen. cmd = ['doxygen', '-'] - doc_dir = Path(__file__).parents[3] - top_dir = os.path.dirname(doc_dir) + support_dir = Path(__file__).parents[3] + top_dir = os.path.dirname(support_dir) include_dir = os.path.join(top_dir, 'include', 'fmt') self._ns2doxyxml = {} self._doxyxml_dir = os.path.join(top_dir, 'build', 'doxyxml')