Skip to content

Commit

Permalink
added sslv3 handler and upped version
Browse files Browse the repository at this point in the history
  • Loading branch information
michael committed May 5, 2014
1 parent 83ca209 commit f6106b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion suds/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# Project properties
#

__version__ = '0.4.unomena.1'
__version__ = '0.4.unomena.2'
__build__="GA R699-20100913"

#
Expand Down
2 changes: 2 additions & 0 deletions suds/transport/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import base64
import socket
from suds.transport import *
from suds.transport.httpsconnectionv3 import *
from suds.properties import Unskin
from urlparse import urlparse
from cookielib import CookieJar
Expand Down Expand Up @@ -136,6 +137,7 @@ def u2handlers(self):
"""
handlers = []
handlers.append(u2.ProxyHandler(self.proxy))
handlers.append(HTTPSHandlerV3())
return handlers

def u2ver(self):
Expand Down

0 comments on commit f6106b4

Please sign in to comment.