summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorRussell Bryant <rbryant@redhat.com>2012-01-31 16:16:24 -0500
committerRussell Bryant <rbryant@redhat.com>2012-01-31 16:16:24 -0500
commitd8b6b65f3234c276c15f284e191aba8caceb0cc7 (patch)
tree04b5c46cdd1a94029e86e411dac4b81eb0430624 /doc
parentfe56d3c6ba27048a4d72dca7a9830061a551906c (diff)
downloadnova-d8b6b65f3234c276c15f284e191aba8caceb0cc7.tar.gz
nova-d8b6b65f3234c276c15f284e191aba8caceb0cc7.tar.xz
nova-d8b6b65f3234c276c15f284e191aba8caceb0cc7.zip
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
Diffstat (limited to 'doc')
-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 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