From 23409ee716fc76ba0ef0749b388be60436f71f98 Mon Sep 17 00:00:00 2001 From: David Stanek Date: Wed, 8 Jul 2015 20:10:30 +0000 Subject: [PATCH] Fixes modules index generated by Sphinx Sphinx was always using (k)eystonemiddleware for the prefix so the index wasn't very useful. Change-Id: Id1f86c92dfea0faf72484df12764b01b6c8f2d08 --- 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 069382be..ff4b24cc 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -113,7 +113,7 @@ add_module_names = True pygments_style = 'sphinx' # A list of ignored prefixes for module index sorting. -#modindex_common_prefix = [] +modindex_common_prefix = ['keystonemiddleware.'] # Grouping the document tree for man pages. # List of tuples 'sourcefile', 'target', 'title', 'Authors name', 'manual'