Removed /RPC2 default setting -- this isn't part of the JSON-RPC spec.

git-svn-id: http://jsonrpclib.googlecode.com/svn/trunk@20 ae587032-bbab-11de-869a-473eb4776397
This commit is contained in:
catchjosh 2010-09-10 07:14:38 +00:00
parent b9d42f9a2a
commit 283a2a94ca
1 changed files with 2 additions and 1 deletions

View File

@ -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()