diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-01-21 13:11:12 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-21 13:11:12 +0900 |
commit | 1c3865b190203c3b70145709b2d9183fb9ccbeb4 (patch) | |
tree | cabb8c7acc1fb43011eac322c1c37ec102378fbb /sphinx/setup_command.py | |
parent | 7efb82046b65def906137327924c77b833442edf (diff) | |
parent | 7775b9e1ce7261f4f83b31b6752d1d7df8705e68 (diff) | |
download | sphinx-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.py | 2 |
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) |