Explicitly set verbosity off in the XML-RPC client

This is so I don't have to hunt for where to set this to True when doing
low-level client debugging.
This commit is contained in:
Rob Crittenden
2009-09-10 16:11:16 -04:00
parent eca7cdc94a
commit bb09db2228

View File

@@ -378,6 +378,7 @@ class xmlclient(Connectible):
kw = dict(allow_none=True, encoding='UTF-8')
if self.env.xmlrpc_uri.startswith('https://'):
kw['transport'] = KerbTransport()
kw['verbose'] = False
return ServerProxy(self.env.xmlrpc_uri, **kw)
def destroy_connection(self):