Documentation Correction to use http.server for Python3 (#6549)

This commit is contained in:
Chanakya 2018-12-17 17:20:33 -08:00 committed by Maxime Beauchemin
parent 95cdda4482
commit c6263fc096
1 changed files with 2 additions and 1 deletions

View File

@ -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