remove unexistent module from doc/source/conf.py

oslo-incubator.log_handler has been removed but still remains in
doc/source/conf.py, this patch removes it from excluded list.

Change-Id: I06c8b0513188e1f81edde880429f0698e459d166
This commit is contained in:
ZhiQiang Fan 2015-01-26 17:03:53 +08:00
parent 5042b2da73
commit 048f891283

View File

@ -51,8 +51,7 @@ def write_autodoc_index():
RSTDIR = os.path.abspath(os.path.join(BASE_DIR, "sourcecode")) RSTDIR = os.path.abspath(os.path.join(BASE_DIR, "sourcecode"))
SRCS = {'ceilometer': ROOT} SRCS = {'ceilometer': ROOT}
EXCLUDED_MODULES = ('ceilometer.openstack.common.log_handler', EXCLUDED_MODULES = ('ceilometer.tests',)
'ceilometer.tests')
CURRENT_SOURCES = {} CURRENT_SOURCES = {}
if not(os.path.exists(RSTDIR)): if not(os.path.exists(RSTDIR)):