diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-10-14 15:13:21 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-10-14 15:22:06 +0200 |
commit | deefc2a63d36b6659630df703a9b98adffb893e9 (patch) | |
tree | 759b4cf055bf289c7e096ffadb622e83ebdcc038 /doc/Makefile | |
parent | e82a3f0168de499c86a62a4b8699da2b18e95195 (diff) |
makerst: Fix support for module classes
Previous code expected only one XML per module, which is not the case for
e.g. mono or gdnative.
Also add newline after signal description to fix rst warning, and make the
script Python 3-compatible.
[ci skip]
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile b/doc/Makefile index d68c66f8eb..2f9fefe794 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -24,5 +24,5 @@ rst: rm -rf $(OUTPUTDIR)/rst mkdir -p $(OUTPUTDIR)/rst pushd $(OUTPUTDIR)/rst - python2 $(TOOLSDIR)/makerst.py $(CLASSES) + python $(TOOLSDIR)/makerst.py $(CLASSES) popd |