From bc9f370917d704ed3184d7348d3a21f87f66600e Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Mon, 19 Sep 2016 19:23:13 +0100 Subject: [PATCH] Fix building the docs on Read The Docs --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 9695f4d3..dcd45f98 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,7 @@ if read_the_docs_build: if not os.path.exists(output_directory): os.makedirs(output_directory) - subprocess.call('doxygen', shell=True, cwd='./api') + subprocess.call('doxygen', shell=True, cwd='..') # -- General configuration ------------------------------------------------