diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-09-06 17:49:17 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-09-06 17:49:17 (GMT) |
commit | 003e929cdbff032143e58a4f41e7fc4e18e9b73b (patch) | |
tree | 03c64c4644e389bcfa2ba6707fb98bc2de629d62 | |
parent | af580dff4af3cb812cdd7a229a4a65059b3bc1ee (diff) | |
download | cpython-003e929cdbff032143e58a4f41e7fc4e18e9b73b.zip cpython-003e929cdbff032143e58a4f41e7fc4e18e9b73b.tar.gz cpython-003e929cdbff032143e58a4f41e7fc4e18e9b73b.tar.bz2 |
Prevents unnecessary help text appearing in doc build.
-rw-r--r-- | Doc/make.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/make.bat b/Doc/make.bat index 5ab8085..da1f876 100644 --- a/Doc/make.bat +++ b/Doc/make.bat @@ -40,7 +40,7 @@ if "%1" == "clean" ( goto end
)
-%SPHINXBUILD% 2> nul
+%SPHINXBUILD% >nul 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
|