summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Anthony Giusti <kgiusti@apache.org>2012-08-16 17:59:51 +0000
committerKenneth Anthony Giusti <kgiusti@apache.org>2012-08-16 17:59:51 +0000
commita2eb4becc8e99524415183fe05ea407c87ff3798 (patch)
tree32ed1fbba59affc592ed749cfaabc0fc873e741d
parent90f6928f15d920800d01cee8e39b3d1c3899346d (diff)
downloadqpid-python-a2eb4becc8e99524415183fe05ea407c87ff3798.tar.gz
NO-JIRA: remove unsupported argument.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1373957 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/python/qpid/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/python/qpid/util.py b/qpid/python/qpid/util.py
index 7541595453..39ad1d830e 100644
--- a/qpid/python/qpid/util.py
+++ b/qpid/python/qpid/util.py
@@ -27,7 +27,7 @@ except ImportError:
def __init__(self, sock, keyfile=None, certfile=None, trustfile=None):
self.sock = sock
- self.ssl = wrap_socket(sock, keyfile=keyfile, certfile=certfile, ca_certs=trustfile)
+ self.ssl = wrap_socket(sock, keyfile=keyfile, certfile=certfile)
def recv(self, n):
return self.ssl.read(n)