From 27a57b7aed91b2f346abc4a77da838bffa17c727 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anssi=20K=C3=A4=C3=A4ri=C3=A4inen?= Date: Sun, 1 Dec 2013 21:10:11 +0200 Subject: [PATCH] Removed debugger import --- django/db/models/sql/where.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/db/models/sql/where.py b/django/db/models/sql/where.py index a8ddf71350..256413cc83 100644 --- a/django/db/models/sql/where.py +++ b/django/db/models/sql/where.py @@ -356,7 +356,6 @@ class Constraint(object): warnings.warn( "The Constraint class will be removed in Django 1.9. Use Lookup class instead.", PendingDeprecationWarning) - import ipdb; ipdb.set_trace() self.alias, self.col, self.field = alias, col, field def prepare(self, lookup_type, value):