mirror of
https://github.com/django/django.git
synced 2025-07-05 10:19:20 +00:00
queryset-refactor: Typo fix, spotted by Justin Bronn. Fixed #7089.
git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@7465 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
caa150e45e
commit
d7ac1330c5
@ -433,7 +433,7 @@ class Query(object):
|
||||
if with_aliases and field.column in col_aliases:
|
||||
c_alias = 'Col%d' % len(col_aliases)
|
||||
result.append('%s.%s AS %s' % (qn(alias),
|
||||
qn2(field.column), c_aliase))
|
||||
qn2(field.column), c_alias))
|
||||
else:
|
||||
result.append('%s.%s' % (qn(alias), qn2(field.column)))
|
||||
else:
|
||||
|
Loading…
x
Reference in New Issue
Block a user