From c6263fc09617a1a17a2f16bad5af43657fea17fe Mon Sep 17 00:00:00 2001 From: Chanakya Date: Mon, 17 Dec 2018 17:20:33 -0800 Subject: [PATCH] Documentation Correction to use http.server for Python3 (#6549) --- CONTRIBUTING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c08a751ae..f78ec04b6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -153,7 +153,8 @@ and start a simple web server so we can check out the docs in a browser: ```bash cd docs/_build/html -python -m SimpleHTTPServer +python -m http.server # Python2 users should use SimpleHTTPServer + ``` This will start a small Python web server listening on port 8000. Point your