From 15b9ad644dc1fb903449f96527bf7e9d764af35e Mon Sep 17 00:00:00 2001 From: Gage Hugo Date: Mon, 17 Jul 2017 11:07:35 -0500 Subject: [PATCH] Enable sphinx todo extension In a previous change [0] when warning-is-error was added, the sphinx todo extension was causing errors with duplicate registration. However with the recent changes between pbr and sphinx, this extension no longer throws a duplicate error when using warning-is-error and we can add it back in. [0] https://review.openstack.org/#/c/439819/ Change-Id: Ib71f156eb179bdfe07479441334ea0efcc594924 --- doc/source/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/source/conf.py b/doc/source/conf.py index 6cbf48a2..0cef1f7c 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -38,6 +38,7 @@ sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), # extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = ['sphinx.ext.autodoc', + 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.intersphinx', 'openstackdocstheme',