From ebc94be681e7331876c3f875827b0d7195a048ff Mon Sep 17 00:00:00 2001 From: Paul Vincent Craven Date: Thu, 15 Aug 2019 09:38:21 -0500 Subject: [PATCH] Work on fixing path issues for doc building --- docs/source/conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index 50b37f3..703e058 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -17,10 +17,14 @@ # -- Project information ----------------------------------------------------- +import os +import sys + project = 'PyTiled Parser' copyright = '2019, Beefy-Swain' author = 'Beefy-Swain' +sys.path.insert(0, os.path.abspath('..')) # -- General configuration ---------------------------------------------------