diff options
| author | Anssi Kääriäinen <akaariai@gmail.com> | 2012-04-29 21:06:11 +0300 |
|---|---|---|
| committer | Anssi Kääriäinen <akaariai@gmail.com> | 2012-04-29 21:23:38 +0300 |
| commit | 76c3314b6de15dd78eaa5c61aba1444a87084b87 (patch) | |
| tree | 74454f624f71f11b0d133097cc26419cf0ac7073 /django/db/models/sql/query.py | |
| parent | cec6bd5a59547dc97fe98975c570fc27a1e970be (diff) | |
Removed unused variable from sql/query.py
Diffstat (limited to 'django/db/models/sql/query.py')
| -rw-r--r-- | django/db/models/sql/query.py | 2 |
1 files changed, 0 insertions, 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 |
