From ec60a8dfdddf7d20c93ceed5852761c2f5c49dd9 Mon Sep 17 00:00:00 2001 From: Ace Date: Thu, 7 Dec 2023 22:12:03 +0100 Subject: [PATCH] fix docs Fix an issue with docs not being able to find Inkycal modules --- docsource/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsource/conf.py b/docsource/conf.py index d007f51..790c661 100644 --- a/docsource/conf.py +++ b/docsource/conf.py @@ -12,7 +12,7 @@ # import os import sys -sys.path.insert(0, os.path.abspath('../../inkycal')) +sys.path.insert(0, os.path.abspath('..')) master_doc = 'index' # -- Project information -----------------------------------------------------