From 30e3110170e08ca7c0dffb5a5fcf0cb16bbed3e9 Mon Sep 17 00:00:00 2001 From: tqchen Date: Tue, 28 Jul 2015 23:18:15 -0700 Subject: [PATCH] ok --- doc/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index 71dc9ea1b..f3fff0919 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -14,13 +14,14 @@ import sys import os, subprocess import shlex -from sphinx_util import MarkdownParser # 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. curr_path = os.path.dirname(os.path.abspath(os.path.expanduser(__file__))) libpath = os.path.join(curr_path, '../wrapper/') sys.path.insert(0, os.path.join(curr_path, '../wrapper/')) +sys.path.insert(0, curr_path) +from sphinx_util import MarkdownParser # -- General configuration ------------------------------------------------