summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorin Hochstein <lorin@isi.edu>2011-10-27 23:49:32 -0400
committerLorin Hochstein <lorin@isi.edu>2011-10-27 23:49:32 -0400
commitdcb867871548be2d06b8957e059b387efde17aa9 (patch)
treecd1976e8abe6e99a029e18d8d1831dfbfb33b154
parenta448fa066ceb21ee1ef9aa542198145e1ff0dff2 (diff)
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
-rwxr-xr-xdoc/find_autodoc_modules.sh2
1 files changed, 1 insertions, 1 deletions
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