Update Makefile docs command for Python 3

This commit is contained in:
Hugo van Kemenade 2020-12-17 06:17:59 +02:00
parent 27bf17009c
commit d093b7141f
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ doccheck:
.PHONY: docserve .PHONY: docserve
docserve: docserve:
cd docs/_build/html && python3 -mSimpleHTTPServer 2> /dev/null& cd docs/_build/html && python3 -m http.server 2> /dev/null&
.PHONY: help .PHONY: help
help: help:

View File

@ -156,4 +156,4 @@ livehtml: html
livereload $(BUILDDIR)/html -p 33233 livereload $(BUILDDIR)/html -p 33233
serve: serve:
cd $(BUILDDIR)/html; python -m SimpleHTTPServer cd $(BUILDDIR)/html; python3 -m http.server