From 89cf9f61b18dff5b073fae74191fbc8447448374 Mon Sep 17 00:00:00 2001
From: lin-hua-cheng <os.lcheng@gmail.com>
Date: Thu, 9 Jul 2015 21:40:31 -0700
Subject: [PATCH] Fixes modules index generated by Sphinx

Sphinx was always using (o)penstackclient for the prefix so the index
wasn't very useful.

Change-Id: Ie9f5d7fe428142bdb8027b422e3023418b48c428
---
 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 e805a98767..f4434ec154 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -100,7 +100,7 @@ exclude_patterns = []
 pygments_style = 'sphinx'
 
 # A list of ignored prefixes for module index sorting.
-#modindex_common_prefix = []
+modindex_common_prefix = ['openstackclient.']
 
 
 # -- Options for HTML output --------------------------------------------------