From 6d237de7436487b138054474ea728c20f384d79e Mon Sep 17 00:00:00 2001 From: Tom Price Date: Tue, 19 May 2015 17:54:15 +0100 Subject: [PATCH] Remove debug print statement --- RIGS/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/RIGS/views.py b/RIGS/views.py index cebaca28..f7df6c3e 100644 --- a/RIGS/views.py +++ b/RIGS/views.py @@ -271,7 +271,6 @@ class SecureAPIRequest(generic.View): results = [] query = reduce(operator.and_, queries) objects = self.models[model].objects.filter(query) - print objects.query for o in objects: data = { 'pk': o.pk,