Skip to content

Commit

Permalink
Merge pull request #36 from rayrapetyan/patch-1
Browse files Browse the repository at this point in the history
Fix for issue 34
  • Loading branch information
joshmarshall committed Mar 6, 2015
2 parents 53c8ffc + d9dab96 commit b59217c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions jsonrpclib/jsonrpc.py
Expand Up @@ -148,10 +148,15 @@ def close(self):
return ''.join(self.data)

class Transport(TransportMixIn, XMLTransport):
pass
def __init__(self):
TransportMixIn.__init__(self)
XMLTransport.__init__(self)

class SafeTransport(TransportMixIn, XMLSafeTransport):
pass
def __init__(self):
TransportMixIn.__init__(self)
XMLSafeTransport.__init__(self)

from httplib import HTTP, HTTPConnection
from socket import socket

Expand Down

0 comments on commit b59217c

Please sign in to comment.