summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-02-01 17:56:37 +0000
committerGerrit Code Review <review@openstack.org>2012-02-01 17:56:37 +0000
commit8908d8ba499220c7495871eebcdd259d6dcdfb9d (patch)
treecb049d5fe6618cb3cb7ced362ba67008efaf682b
parent8b02c68845d6cdfe234b436d0ab309dc05fe0528 (diff)
parentd8b6b65f3234c276c15f284e191aba8caceb0cc7 (diff)
downloadnova-8908d8ba499220c7495871eebcdd259d6dcdfb9d.tar.gz
nova-8908d8ba499220c7495871eebcdd259d6dcdfb9d.tar.xz
nova-8908d8ba499220c7495871eebcdd259d6dcdfb9d.zip
Merge "Fix broken devref docs."
-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