This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new c6263fc Documentation Correction to use http.server for Python3
(#6549)
c6263fc is described below
commit c6263fc09617a1a17a2f16bad5af43657fea17fe
Author: Chanakya <[email protected]>
AuthorDate: Mon Dec 17 17:20:33 2018 -0800
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 c08a751..f78ec04 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