Removed unused variable from sql/query.py

This commit is contained in:
Anssi Kääriäinen 2012-04-29 21:06:11 +03:00
parent cec6bd5a59
commit 76c3314b6d
1 changed files with 0 additions and 2 deletions

View File

@ -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