From 99973fdd685a5e21197e59e8c802e2b72728878c Mon Sep 17 00:00:00 2001 From: Evgeniy L Date: Fri, 5 Feb 2016 13:12:59 +0300 Subject: [PATCH] Don't use yasfb on readthedocs Change-Id: Iacaa0e2166e2172e3e3f69ada3bb730c161e2844 Closes-bug: #1536972 --- doc/source/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index f4786d4..621185c 100755 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -22,8 +22,7 @@ sys.path.insert(0, os.path.abspath('../..')) # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = [ - 'sphinx.ext.autodoc', - 'yasfb', + 'sphinx.ext.autodoc' ] # Don't use default openstack theme, for readthedocs @@ -31,6 +30,7 @@ on_rtd = os.environ.get('READTHEDOCS', None) == 'True' if not on_rtd: extensions.append('oslosphinx') + extensions.append('yasfb') # Feed configuration for yasfb feed_base_url = 'http://specs.openstack.org/openstack/bareon'