From d8e33dbd6746c9579bd39ad6560b231409b6b948 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Mon, 23 Dec 2019 16:49:35 +0100 Subject: [PATCH] Fix path to source code in docs config. This should fix API docs, which went AWOL with yesterday's changes. --- 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 41a65eec29..91c226b755 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -14,7 +14,7 @@ # import os import sys -sys.path.insert(0, os.path.abspath('../..')) +sys.path.insert(0, os.path.abspath('../../src')) # -- Project information -----------------------------------------------------