5048. 5049. 5050. 5051. 5052. 5053. 5054. 5055. 5056. 5057. | args = request.args d = dict(request.vars) if args and args[0] in self.json_procedures: s = self.call_service_function(self.json_procedures[args[0]], *args[1:], **d) if hasattr(s, 'as_list'): s = s.as_list() # - the problem is here return response.json(s) self.error()
class JsonRpcException(Exception): |