From aa8751e57ef6e85ccc5bfd1cd46a171808f861a6 Mon Sep 17 00:00:00 2001 From: lin-hua-cheng Date: Thu, 9 Jul 2015 21:28:20 -0700 Subject: [PATCH] Fixes modules index generated by Sphinx Sphinx was always using (o)penstack_auth for the prefix so the index wasn't very useful. Change-Id: I872b883688eba22631dd030dad9430b39a19f333 --- 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 694f1379..3e4c09cf 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -77,7 +77,7 @@ exclude_patterns = ['_build'] pygments_style = 'sphinx' # A list of ignored prefixes for module index sorting. -#modindex_common_prefix = [] +modindex_common_prefix = ['openstack_auth.'] # -- Options for HTML output ---------------------------------------------------