X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=bin%2Flists.rpc.py;h=3b5314841976774b67e3d15b8575f5fefa89429a;hb=16925f019deb7ab114f91dc623897103ba708d01;hp=4e474702a466878e92b1210a53f02e332449df1b;hpb=184b012d1fb4d02b6f5e5ed9e11fcd6457a36b06;p=platal.git diff --git a/bin/lists.rpc.py b/bin/lists.rpc.py index 4e47470..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): @@ -385,7 +386,7 @@ def subscribe(userdesc, perms, mlist): return result def unsubscribe(userdesc, perms, mlist): - "" Unsubscribe from a list + """ Unsubscribe from a list @mlist @edit """