From 2f18748b06b7c17204b0bb529f23266a110bf041 Mon Sep 17 00:00:00 2001 From: Ciro Scognamiglio Date: Fri, 28 Feb 2014 20:13:29 +0100 Subject: [PATCH] removed debug --- rest/__init__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rest/__init__.py b/rest/__init__.py index fe5e2925..854c9e8c 100644 --- a/rest/__init__.py +++ b/rest/__init__.py @@ -99,9 +99,7 @@ def dispatch(request, object_type, object_name): req_items = request.POST elif request.method == 'GET': req_items = request.GET - - print req_items - + for el in req_items.items(): if el[0].startswith('filters'): o.filters[el[0][8:-1]] = el[1] -- 2.43.0