mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Closes #801: Make intersphinx work properly without SSL support.
This commit is contained in:
parent
ddb7fab16d
commit
5d19b860e2
2
CHANGES
2
CHANGES
@ -1,6 +1,8 @@
|
||||
Release 1.1.1 (in development)
|
||||
==============================
|
||||
|
||||
* #801: Make intersphinx work properly without SSL support.
|
||||
|
||||
* #805: Make the ``Sphinx.add_index_to_domain`` method work correctly.
|
||||
|
||||
* #780: Fix Python 2.5 compatibility.
|
||||
|
@ -42,7 +42,7 @@ handlers = [urllib2.ProxyHandler(), urllib2.HTTPRedirectHandler(),
|
||||
urllib2.HTTPHandler()]
|
||||
try:
|
||||
handlers.append(urllib2.HTTPSHandler)
|
||||
except NameError:
|
||||
except AttributeError:
|
||||
pass
|
||||
|
||||
urllib2.install_opener(urllib2.build_opener(*handlers))
|
||||
|
Loading…
Reference in New Issue
Block a user