Skip to content

Commit 590b2ab

Browse files
committed
tools, gendoc: Put module TOC/index in module/ directory.
1 parent ea439e5 commit 590b2ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/gendoc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def dump(self):
336336
return '\n'.join(s)
337337

338338
def write(self, dir):
339-
with open(os.path.join(dir, 'index.html'), 'wt') as f:
339+
with open(os.path.join(dir, 'module', 'index.html'), 'wt') as f:
340340
f.write(markdown.markdown(self.dump()))
341341
for m in self.modules.values():
342342
mod_dir = os.path.join(dir, 'module', m.name)

0 commit comments

Comments
 (0)