From 8435b47f80deee92912243e1314be0054fb2b87b Mon Sep 17 00:00:00 2001 From: Javier Pena Date: Tue, 4 Jul 2017 16:47:18 +0200 Subject: [PATCH] Fix man page build https://review.openstack.org/474775 moved glance.rst from the doc/source/man directory into doc/source/cli, so we need to adjust the path in conf.py to avoid issues when running: python setup.py build_sphinx -b man Change-Id: I2c37755553d1265fb9fb069067c4468853f395b7 --- doc/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 574b931c..98ab8c9c 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -83,6 +83,6 @@ html_last_updated_fmt = '%Y-%m-%d %H:%M' # Grouping the document tree for man pages. # List of tuples 'sourcefile', 'target', u'title', u'Authors name', 'manual' man_pages = [ - ('man/glance', 'glance', u'Client for OpenStack Images API', + ('cli/glance', 'glance', u'Client for OpenStack Images API', [u'OpenStack Foundation'], 1), ]