From c6aeb88a8b5c20ab1c113401913abedc9f78c47b Mon Sep 17 00:00:00 2001 From: Florent Bruneau Date: Fri, 9 Apr 2010 23:39:22 +0200 Subject: [PATCH] Fix list rpc. Signed-off-by: Florent Bruneau --- bin/lists.rpc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/lists.rpc.py b/bin/lists.rpc.py index dd959f3..3b53148 100755 --- a/bin/lists.rpc.py +++ b/bin/lists.rpc.py @@ -105,9 +105,10 @@ class BasicAuthXMLRPCRequestHandler(SimpleXMLRPCRequestHandler): except: raise Exception('method "%s" is not supported' % method) + def is_rpc_path_valid(self): + return True def _dispatch(self, method, params): - new_params = list(params) return list_call_dispatcher(self._get_function(method), self.data[0], self.data[1], self.data[2], *params) def do_POST(self): -- 2.1.4