diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2018-10-24 13:30:45 -0700 |
---|---|---|
committer | Jeff Widman <jeff@jeffwidman.com> | 2018-10-24 15:37:41 -0700 |
commit | ac9d5623116a5754c57a8ecd95b2954ba0f30c14 (patch) | |
tree | 1891dfe94b3723dfe2f0552a8db3f122db042dc0 | |
parent | 6380c1db52b6b4d06a189bbfad62e3393cde60c8 (diff) | |
download | kafka-python-ac9d5623116a5754c57a8ecd95b2954ba0f30c14.tar.gz |
Fix sphinx url
When I was fixing urls the other day, I noticed that sphinx hadn't added
https but there was an open ticket: https://github.com/sphinx-doc/sphinx/issues/5522
Now that that is resolved, I'm updating it here.
-rw-r--r-- | docs/Makefile | 2 | ||||
-rw-r--r-- | docs/make.bat | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/Makefile b/docs/Makefile index 5751f68..b27cf77 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -9,7 +9,7 @@ BUILDDIR = _build # User-friendly check for sphinx-build ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1) -$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/) +$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from https://www.sphinx-doc.org/) endif # Internal variables. diff --git a/docs/make.bat b/docs/make.bat index 2e9d7dc..3332a3a 100644 --- a/docs/make.bat +++ b/docs/make.bat @@ -56,7 +56,7 @@ if errorlevel 9009 ( echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
- echo.http://sphinx-doc.org/
+ echo.https://www.sphinx-doc.org/
exit /b 1
)
|