1
0
mirror of https://github.com/django/django.git synced 2025-07-05 18:29:11 +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:
Malcolm Tredinnick 2008-03-20 06:17:51 +00:00
parent 22bb040b60
commit cdeebb33f5

View File

@ -232,7 +232,7 @@ class Query(object):
result.append('WHERE')
else:
result.append('AND')
result.append(' AND'.join(self.extra_where))
result.append(' AND '.join(self.extra_where))
if self.group_by:
grouping = self.get_grouping()