mistercrunch commented on a change in pull request #6495: [fixed]A write-error in contributing.md URL: https://github.com/apache/incubator-superset/pull/6495#discussion_r239537656
########## File path: CONTRIBUTING.md ########## @@ -152,8 +152,11 @@ HTML Sphinx generated should be in `docs/_build/html`. Navigate there and start a simple web server so we can check out the docs in a browser: ```bash -cd docs/_build/html +cd _build/html +#python2 Review comment: We don't support py2.7 anymore, so might as well just use `python -m http.server 8000`. You may want to add a note about py3, or straight up add the 3 in the command as in `python3 -m http.server 8000`. But I'm not sure whether `python3` symlink is available in all/most envs... ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
