Skip to content

Commit

Permalink
Revert coverage: tox will cover 3.3 also
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed May 8, 2015
1 parent e5fa023 commit 86b9958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiohttp/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def ssl_context(self):
elif _SSH_HAS_CREATE_DEFAULT_CONTEXT:
# Python 3.4+
sslcontext = ssl.create_default_context()
else: # pragma: no cover
else:
# Fallback for Python 3.3.
sslcontext = ssl.SSLContext(ssl.PROTOCOL_SSLv23)
sslcontext.options |= ssl.OP_NO_SSLv2
Expand Down

0 comments on commit 86b9958

Please sign in to comment.