Skip to content

Commit

Permalink
Removed call to the setter I removed in the previous commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Andrzejewski committed Oct 19, 2012
1 parent aee7b2a commit 2413492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requests/packages/urllib3/connectionpool.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ def _new_conn(self):
connection.set_cert(key_file=self.key_file, cert_file=self.cert_file,
cert_reqs=self.cert_reqs, ca_certs=self.ca_certs)

connection.set_ssl_version(self.ssl_version)
connection.ssl_version = self.ssl_version

return connection

Expand Down

0 comments on commit 2413492

Please sign in to comment.