From dcb867871548be2d06b8957e059b387efde17aa9 Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Thu, 27 Oct 2011 23:49:32 -0400 Subject: Fix to a documentation generation script. Filenames no longer have two dots in them source/api/nova..adminclient.rst -> source/api/nova.adminclient.rst Fixes bug 882889 Change-Id: I71132962fb934e35efbe956b25e68982a5a34ad1 --- doc/find_autodoc_modules.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/find_autodoc_modules.sh b/doc/find_autodoc_modules.sh index c612b0084..b44f060fb 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