summaryrefslogtreecommitdiff
path: root/django/db/models
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-06-27 03:48:11 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-06-27 03:48:11 +0000
commit8aec66f144d51bc176ea01431eef23c0c40ed6d1 (patch)
tree6fb359dd275b8a982cb3e0bd75449fba8119ac75 /django/db/models
parentade4a1246c5e65ed544a990a720cf1c953ec604b (diff)
Removed a dead line that was left in [7773] by accident.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7774 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/models')
-rw-r--r--django/db/models/sql/where.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/models/sql/where.py b/django/db/models/sql/where.py
index eed3bf0e21..bf45bceb4b 100644
--- a/django/db/models/sql/where.py
+++ b/django/db/models/sql/where.py
@@ -100,7 +100,6 @@ class WhereNode(tree.Node):
lhs = '%s.%s' % (qn(table_alias), qn(name))
else:
lhs = qn(name)
- ##db_type = field and field.db_type() or None
field_sql = connection.ops.field_cast_sql(db_type) % lhs
if value_annot is datetime.datetime: