diff options
| author | Julien Phalip <jphalip@gmail.com> | 2012-09-15 16:33:56 -0700 |
|---|---|---|
| committer | Julien Phalip <jphalip@gmail.com> | 2012-09-15 16:33:56 -0700 |
| commit | 336dfc3413b22bc5a5008bba7ff383886da96d60 (patch) | |
| tree | d3ceafb72b3d2a67475bad055fc3790f388f6e88 /tests/regressiontests/admin_views/admin.py | |
| parent | 421ce44e8bb7386d1f5826d0473a3e24f6075d35 (diff) | |
[1.4.X] Fixed #18530 -- Fixed a small regression in the admin filters where wrongly formatted dates passed as url parameters caused an unhandled ValidationError. Thanks to david for the report.
Diffstat (limited to 'tests/regressiontests/admin_views/admin.py')
| -rw-r--r-- | tests/regressiontests/admin_views/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/admin_views/admin.py b/tests/regressiontests/admin_views/admin.py index d9607496c3..3369c557b7 100644 --- a/tests/regressiontests/admin_views/admin.py +++ b/tests/regressiontests/admin_views/admin.py @@ -127,7 +127,7 @@ class CustomArticleAdmin(admin.ModelAdmin): class ThingAdmin(admin.ModelAdmin): - list_filter = ('color__warm', 'color__value') + list_filter = ('color__warm', 'color__value', 'pub_date',) class InquisitionAdmin(admin.ModelAdmin): |
