diff options
| author | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-03-10 04:42:11 +0000 |
|---|---|---|
| committer | Vishvananda Ishaya <vishvananda@gmail.com> | 2011-03-10 04:42:11 +0000 |
| commit | f01b0a114e2876e97b68903ff02dcb1866a62021 (patch) | |
| tree | 349ced30ea1706a803f1fb9d22547f280fcbce8f /doc | |
| parent | ec23b8e1205e969d449834b02984d01a8daf93dc (diff) | |
| parent | 84c769ce17822eac3788336cbae8f82f03f089cf (diff) | |
merged trunk
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/ext/nova_autodoc.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/ext/nova_autodoc.py b/doc/ext/nova_autodoc.py index 5429bb656..3dd992d84 100644 --- a/doc/ext/nova_autodoc.py +++ b/doc/ext/nova_autodoc.py @@ -8,5 +8,6 @@ from nova import utils def setup(app): rootdir = os.path.abspath(app.srcdir + '/..') print "**Autodocumenting from %s" % rootdir - rv = utils.execute('cd %s && ./generate_autodoc_index.sh' % rootdir) + os.chdir(rootdir) + rv = utils.execute('./generate_autodoc_index.sh') print rv[0] |
