Fixes a small issue in find_autodoc_modules.sh
When generating docs, the modules listed under api all seem to be missing the first letter after "cinder." at the beginning. Change-Id: I924e55642350d3bb813ebab7cb978915fdd8b964 Closes-bug: #1408828
This commit is contained in:
parent
8e4471b055
commit
05a6ad4b4f
@ -8,7 +8,7 @@ for x in `find ${CINDER_DIR} -name '*.py' | grep -v cinder/tests`; do
|
||||
if [ `basename ${x} .py` == "__init__" ] ; then
|
||||
continue
|
||||
fi
|
||||
relative=cinder.`echo ${x} | sed -e 's$^'${CINDER_DIR}'$$' -e 's/.py$//' -e 's$/$.$g' -e 's$^.$$'`
|
||||
relative=cinder.`echo ${x} | sed -e 's$^'${CINDER_DIR}'$$' -e 's/.py$//' -e 's$/$.$g'`
|
||||
modules="${modules} ${relative}"
|
||||
done
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user