From 120e93f28d52ec1059bb0cb66c8c6e7e1e752fc8 Mon Sep 17 00:00:00 2001 From: Jaren Ashcraft Date: Mon, 25 Sep 2023 10:23:11 -0700 Subject: [PATCH] try abspath fix in conf.py --- docs/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 7156be9..d4f1e64 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,7 +13,8 @@ import os import sys sys.path.insert(0, os.path.abspath('.')) -sys.path.append('poke') +sys.path.insert(0,os.path.abspath('../')) +#sys.path.append('poke') # -- Project information -----------------------------------------------------