From 76c3314b6de15dd78eaa5c61aba1444a87084b87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anssi=20K=C3=A4=C3=A4ri=C3=A4inen?= Date: Sun, 29 Apr 2012 21:06:11 +0300 Subject: [PATCH] Removed unused variable from sql/query.py --- django/db/models/sql/query.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/django/db/models/sql/query.py b/django/db/models/sql/query.py index 6111a88118..3474434e56 100644 --- a/django/db/models/sql/query.py +++ b/django/db/models/sql/query.py @@ -104,7 +104,6 @@ class Query(object): self.alias_map = {} # Maps alias to join information self.table_map = {} # Maps table names to list of aliases. self.join_map = {} - self.quote_cache = {} self.default_cols = True self.default_ordering = True self.standard_ordering = True @@ -243,7 +242,6 @@ class Query(object): obj.alias_map = self.alias_map.copy() obj.table_map = self.table_map.copy() obj.join_map = self.join_map.copy() - obj.quote_cache = {} obj.default_cols = self.default_cols obj.default_ordering = self.default_ordering obj.standard_ordering = self.standard_ordering