mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Fixed comma splice in error message introduced in [5133]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5154 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
3d52993b46
commit
1889db475d
6 changed files with 8 additions and 8 deletions
|
@ -948,7 +948,7 @@ def lookup_inner(path, lookup_type, value, opts, table, column):
|
|||
field_choices(current_opts.get_all_related_many_to_many_objects(), True) + \
|
||||
field_choices(current_opts.get_all_related_objects(), True) + \
|
||||
field_choices(current_opts.fields, False)
|
||||
raise TypeError, "Cannot resolve keyword '%s' into field, choices are: %s" % (name, ", ".join(choices))
|
||||
raise TypeError, "Cannot resolve keyword '%s' into field. Choices are: %s" % (name, ", ".join(choices))
|
||||
|
||||
# Check whether an intermediate join is required between current_table
|
||||
# and new_table.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue