Commit baf04377 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki Committed by Jérome Perrin

py3: strict argument in HTTPSConnection() was removed in Python 3.4.

parent 4966607d
...@@ -119,7 +119,6 @@ class RESTAPIClientConnectorMixin(XMLObject): ...@@ -119,7 +119,6 @@ class RESTAPIClientConnectorMixin(XMLObject):
http_connection = HTTPSConnection( http_connection = HTTPSConnection(
host=parsed_url.hostname, host=parsed_url.hostname,
port=parsed_url.port, port=parsed_url.port,
strict=True,
timeout=time_left_before_timeout, timeout=time_left_before_timeout,
source_address=bind_address, source_address=bind_address,
context=ssl_context, context=ssl_context,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment