diff options
-rw-r--r-- | jsonrpclib/jsonrpc.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/jsonrpclib/jsonrpc.py b/jsonrpclib/jsonrpc.py index f74cd42..dc20fd6 100644 --- a/jsonrpclib/jsonrpc.py +++ b/jsonrpclib/jsonrpc.py @@ -151,7 +151,8 @@ class ServerProxy(XMLServerProxy): self.__host, self.__handler = urllib.splithost(uri) if not self.__handler: # Not sure if this is in the JSON spec? - self.__handler = '/RPC2' + #self.__handler = '/' + self.__handler == '/' if transport is None: if schema == 'https': transport = SafeTransport() |