From d8b6b65f3234c276c15f284e191aba8caceb0cc7 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Tue, 31 Jan 2012 16:16:24 -0500 Subject: Fix broken devref docs. Fix bug 888102. This patch fixes the documentation generated here: http://nova.openstack.org/devref/index.html There was a typo in a script that resulted in the module names being invalid and no docs being generated. This one character patch fixes it up and makes the docs happy. Change-Id: I1986e8b468334a1a33264aaec740c4f535a7c30b --- doc/find_autodoc_modules.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/find_autodoc_modules.sh b/doc/find_autodoc_modules.sh index b44f060fb..c612b0084 100755 --- a/doc/find_autodoc_modules.sh +++ b/doc/find_autodoc_modules.sh @@ -8,7 +8,7 @@ for x in `find ${NOVA_DIR} -name '*.py'`; do if [ `basename ${x} .py` == "__init__" ] ; then continue fi - relative=nova`echo ${x} | sed -e 's$^'${NOVA_DIR}'$$' -e 's/.py$//' -e 's$/$.$g'` + relative=nova.`echo ${x} | sed -e 's$^'${NOVA_DIR}'$$' -e 's/.py$//' -e 's$/$.$g'` modules="${modules} ${relative}" done -- cgit