--- XMLRpcTools/XmlRpcProxy.py 2007/11/26 20:29:55 1.3 +++ XMLRpcTools/XmlRpcProxy.py 2007/11/26 20:32:58 1.4 @@ -92,6 +92,8 @@ class XmlRpcProxyMethod(SimpleItem): if self.rpc_arg_expr: # clean arguments args = [ re.sub(self.rpc_arg_expr,'',a) for a in argv] + else: + args = argv # call the method self.id on the server with the args return getattr(server, self.id)(*args)