From e309425ee58f2692e52c5b0269508ae04cdc4963 Mon Sep 17 00:00:00 2001 From: Roman Mogilatov Date: Sun, 29 Nov 2015 22:46:48 +0200 Subject: [PATCH] Update sys.path in docs/conf.py --- docs/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 0b3a4a1f..1eba28b6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -14,11 +14,12 @@ import os import re +import sys # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. -#sys.path.insert(0, os.path.abspath('.')) +sys.path.insert(0, os.path.abspath('..')) # -- General configuration ------------------------------------------------