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/util/osutil.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/util/osutil.py')
-rw-r--r-- | sphinx/util/osutil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/util/osutil.py b/sphinx/util/osutil.py index a936016a2..3ecfb4a1b 100644 --- a/sphinx/util/osutil.py +++ b/sphinx/util/osutil.py @@ -196,7 +196,7 @@ def ustrftime(format, *args): return time.strftime(text_type(format).encode(enc), *args).decode(enc) else: # Py3 # On Windows, time.strftime() and Unicode characters will raise UnicodeEncodeError. - # http://bugs.python.org/issue8304 + # https://bugs.python.org/issue8304 try: return time.strftime(format, *args) except UnicodeEncodeError: |