mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
queryset-refactor: Added a missing space in the SQL construction.
git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@7327 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
@@ -232,7 +232,7 @@ class Query(object):
|
|||||||
result.append('WHERE')
|
result.append('WHERE')
|
||||||
else:
|
else:
|
||||||
result.append('AND')
|
result.append('AND')
|
||||||
result.append(' AND'.join(self.extra_where))
|
result.append(' AND '.join(self.extra_where))
|
||||||
|
|
||||||
if self.group_by:
|
if self.group_by:
|
||||||
grouping = self.get_grouping()
|
grouping = self.get_grouping()
|
||||||
|
|||||||
Reference in New Issue
Block a user