diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-05-06 04:12:08 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-05-06 04:12:08 +0000 |
| commit | 1889db475db596c201c1f57523792f6a0babdf12 (patch) | |
| tree | c76bcccc38737ca17b7bde14b7da59f96bf33aef /tests/regressiontests/null_queries | |
| parent | 3d52993b46070cf3d34c91cd107511918de9d8e0 (diff) | |
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
Diffstat (limited to 'tests/regressiontests/null_queries')
| -rw-r--r-- | tests/regressiontests/null_queries/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/null_queries/models.py b/tests/regressiontests/null_queries/models.py index 4396ab4005..21944d9e7a 100644 --- a/tests/regressiontests/null_queries/models.py +++ b/tests/regressiontests/null_queries/models.py @@ -32,7 +32,7 @@ __test__ = {'API_TESTS':""" >>> Choice.objects.filter(foo__exact=None) Traceback (most recent call last): ... -TypeError: Cannot resolve keyword 'foo' into field, choices are: id, poll, choice +TypeError: Cannot resolve keyword 'foo' into field. Choices are: id, poll, choice # Can't use None on anything other than __exact >>> Choice.objects.filter(id__gt=None) |
