Skip to content

Commit

Permalink
Removed unused variable from sql/query.py
Browse files Browse the repository at this point in the history
  • Loading branch information
akaariai committed Apr 29, 2012
1 parent cec6bd5 commit 76c3314
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions django/db/models/sql/query.py
Expand Up @@ -104,7 +104,6 @@ def __init__(self, model, where=WhereNode):
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
Expand Down Expand Up @@ -243,7 +242,6 @@ def clone(self, klass=None, memo=None, **kwargs):
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
Expand Down

0 comments on commit 76c3314

Please sign in to comment.