From c60edd791be5269c9f3c3ddf8fb315bcebd691e4 Mon Sep 17 00:00:00 2001 From: Paul Vincent Craven Date: Thu, 15 Aug 2019 11:08:01 -0500 Subject: [PATCH] Try to fix relative directory for RTD build --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 071ceb9..ddeec51 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,7 +24,7 @@ project = 'PyTiled Parser' copyright = '2019, Beefy-Swain' author = 'Beefy-Swain' -sys.path.insert(0, os.path.abspath('..')) +sys.path.insert(0, os.path.abspath('../..')) # -- General configuration ---------------------------------------------------