Skip to content

Commit

Permalink
Merge pull request certbot#1879 from alex/patch-1
Browse files Browse the repository at this point in the history
Fixed an inaccurate comment
  • Loading branch information
pde committed Dec 12, 2015
2 parents 35a6dbb + f5fde98 commit c34088d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion acme/acme/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@

logger = logging.getLogger(__name__)

# Python does not validate certificates by default before version 2.7.9
# Prior to Python 2.7.9 the stdlib SSL module did not allow a user to configure
# many important security related options. On these platforms we use PyOpenSSL
# for SSL, which does allow these options to be configured.
# https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning
if sys.version_info < (2, 7, 9): # pragma: no cover
requests.packages.urllib3.contrib.pyopenssl.inject_into_urllib3()
Expand Down

0 comments on commit c34088d

Please sign in to comment.