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
This commit is contained in:
Lorin Hochstein 2011-10-27 23:49:32 -04:00
parent a448fa066c
commit dcb8678715

View File

@ -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