diff options
| author | Brian Rosner <brosner@gmail.com> | 2008-08-14 21:03:44 +0000 |
|---|---|---|
| committer | Brian Rosner <brosner@gmail.com> | 2008-08-14 21:03:44 +0000 |
| commit | 21029678078b8f69ff438ea9ed5a9a9359b05b2e (patch) | |
| tree | b9f7e7a055bcce22e56be56cbf663e888773ba87 | |
| parent | dd0e5fd992986211bdb52b2cdfbd1e232788a20b (diff) | |
Fixed failing tests from [8352]. Thanks Alex Gaynor for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8354 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/admin/validation.py | 2 | ||||
| -rw-r--r-- | tests/regressiontests/modeladmin/models.py | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/django/contrib/admin/validation.py b/django/contrib/admin/validation.py index 48e35c68b3..9b9cefab98 100644 --- a/django/contrib/admin/validation.py +++ b/django/contrib/admin/validation.py @@ -39,7 +39,7 @@ def validate(cls, model): if not hasattr(cls, field): if not hasattr(model, field): try: - return opts.get_field(field) + opts.get_field(field) except models.FieldDoesNotExist: raise ImproperlyConfigured("%s.list_display[%d], %r is " "not a callable or an attribute of %r or found in the model %r." diff --git a/tests/regressiontests/modeladmin/models.py b/tests/regressiontests/modeladmin/models.py index 0fdd9afdf1..488947ad3e 100644 --- a/tests/regressiontests/modeladmin/models.py +++ b/tests/regressiontests/modeladmin/models.py @@ -559,7 +559,8 @@ ImproperlyConfigured: `ValidationTestModelAdmin.list_display` must be a list or >>> validate(ValidationTestModelAdmin, ValidationTestModel) Traceback (most recent call last): ... -ImproperlyConfigured: `ValidationTestModelAdmin.list_display[0]` refers to `non_existent_field` that is neither a field, method or property of model `ValidationTestModel`. +ImproperlyConfigured: ValidationTestModelAdmin.list_display[0], 'non_existent_field' is not a callable or an attribute of 'ValidationTestModelAdmin' or found in the model 'ValidationTestModel'. + >>> class ValidationTestModelAdmin(ModelAdmin): ... list_display = ('users',) |
