summaryrefslogtreecommitdiff
path: root/django/db/models/sql
diff options
context:
space:
mode:
authorMads Jensen <mje@inducks.org>2017-01-25 15:14:05 +0100
committerTim Graham <timograham@gmail.com>2017-01-25 09:14:05 -0500
commitebf34c3cdcd2c75349c60a064427ac255958bf9b (patch)
tree7d6289bf88b5c9dc8ccb5b7c245d6cc46c005dd0 /django/db/models/sql
parent5890d6ab03ebc7dac46ce7d9540b5768785caa34 (diff)
Removed unused variables that are overwritten.
Diffstat (limited to 'django/db/models/sql')
-rw-r--r--django/db/models/sql/compiler.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/models/sql/compiler.py b/django/db/models/sql/compiler.py
index 5e5984dfb3..560ea2ef6d 100644
--- a/django/db/models/sql/compiler.py
+++ b/django/db/models/sql/compiler.py
@@ -823,7 +823,6 @@ class SQLCompiler:
"""
Returns an iterator over the results from executing this query.
"""
- converters = None
if results is None:
results = self.execute_sql(MULTI)
fields = [s[0] for s in self.select[0:self.col_count]]