You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kg...@apache.org on 2012/08/16 19:59:51 UTC

svn commit: r1373957 - /qpid/trunk/qpid/python/qpid/util.py

Author: kgiusti
Date: Thu Aug 16 17:59:51 2012
New Revision: 1373957

URL: http://svn.apache.org/viewvc?rev=1373957&view=rev
Log:
NO-JIRA: remove unsupported argument.

Modified:
    qpid/trunk/qpid/python/qpid/util.py

Modified: qpid/trunk/qpid/python/qpid/util.py
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/python/qpid/util.py?rev=1373957&r1=1373956&r2=1373957&view=diff
==============================================================================
--- qpid/trunk/qpid/python/qpid/util.py (original)
+++ qpid/trunk/qpid/python/qpid/util.py Thu Aug 16 17:59:51 2012
@@ -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)



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org