From 5228854f0e026838c21a1e603dab77bb61d2fada Mon Sep 17 00:00:00 2001
From: Damien George <damien.p.george@gmail.com>
Date: Sat, 15 Nov 2014 21:33:07 +0000
Subject: [PATCH] docs: Fix RTD build configuration.

ReadTheDocs needs the root directory in its search path so it finds
topindex.html.
---
 docs/conf.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/docs/conf.py b/docs/conf.py
index 0eee4c090..23be2e489 100755
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -114,6 +114,8 @@ if not on_rtd:  # only import and set the theme if we're building docs locally
     except:
         html_theme = 'default'
         html_theme_path = ['.']
+else:
+    html_theme_path = ['.']
 
 # Theme options are theme-specific and customize the look and feel of a theme
 # further.  For a list of options available for each theme, see the
-- 
GitLab