summaryrefslogtreecommitdiff
path: root/sphinx/setup_command.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-01-21 13:11:12 +0900
committerGitHub <noreply@github.com>2018-01-21 13:11:12 +0900
commit1c3865b190203c3b70145709b2d9183fb9ccbeb4 (patch)
treecabb8c7acc1fb43011eac322c1c37ec102378fbb /sphinx/setup_command.py
parent7efb82046b65def906137327924c77b833442edf (diff)
parent7775b9e1ce7261f4f83b31b6752d1d7df8705e68 (diff)
downloadsphinx-git-1c3865b190203c3b70145709b2d9183fb9ccbeb4.tar.gz
Merge pull request #4469 from kurtmckee/use-https-urls
Use HTTPS URL's
Diffstat (limited to 'sphinx/setup_command.py')
-rw-r--r--sphinx/setup_command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/setup_command.py b/sphinx/setup_command.py
index 56096c1b6..3ad16ae78 100644
--- a/sphinx/setup_command.py
+++ b/sphinx/setup_command.py
@@ -120,7 +120,7 @@ class BuildDoc(Command):
# Overriding distutils' Command._ensure_stringlike which doesn't support
# unicode, causing finalize_options to fail if invoked again. Workaround
- # for http://bugs.python.org/issue19570
+ # for https://bugs.python.org/issue19570
def _ensure_stringlike(self, option, what, default=None):
# type: (unicode, unicode, Any) -> Any
val = getattr(self, option)