summaryrefslogtreecommitdiffstats
path: root/ipalib/rpc.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2010-03-26 03:56:53 -0600
committerRob Crittenden <rcritten@redhat.com>2010-03-30 15:10:58 -0400
commit918721c1d0ad0b330825aa9e3f464f36e31ad0c1 (patch)
tree5195820ceb404e0ce19f7d36c15969c41775253a /ipalib/rpc.py
parent09d3a6b910b9651e9c8d59917d32a0622409f2e8 (diff)
downloadfreeipa-918721c1d0ad0b330825aa9e3f464f36e31ad0c1.tar.gz
freeipa-918721c1d0ad0b330825aa9e3f464f36e31ad0c1.tar.xz
freeipa-918721c1d0ad0b330825aa9e3f464f36e31ad0c1.zip
XML-RPC signature change
Diffstat (limited to 'ipalib/rpc.py')
-rw-r--r--ipalib/rpc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/rpc.py b/ipalib/rpc.py
index 62f1d7762..e7f333848 100644
--- a/ipalib/rpc.py
+++ b/ipalib/rpc.py
@@ -401,7 +401,7 @@ class xmlclient(Connectible):
)
self.info('Forwarding %r to server %r', name, self.env.xmlrpc_uri)
command = getattr(self.conn, name)
- params = args + (kw,)
+ params = [args, kw]
try:
response = command(*xml_wrap(params))
return xml_unwrap(response)