diff options
author | Loic Bistuer <loic.bistuer@sixmedia.com> | 2013-12-18 09:33:41 +0700 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2013-12-18 08:59:53 -0500 |
commit | 2fd7fc134cf0c0685ceac22fd858509aa43f819f (patch) | |
tree | ae32733c296d46138853416c1e1a7b6becfd0491 /django/forms/utils.py | |
parent | b62031441b2e1cb1eeb7e1d6f254c553643add96 (diff) | |
download | django-2fd7fc134cf0c0685ceac22fd858509aa43f819f.tar.gz |
Refs #17413 -- Added isinstance backward compatibility on ErrorList.
Diffstat (limited to 'django/forms/utils.py')
-rw-r--r-- | django/forms/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/forms/utils.py b/django/forms/utils.py index 3582384293..df75e94f81 100644 --- a/django/forms/utils.py +++ b/django/forms/utils.py @@ -79,7 +79,7 @@ class ErrorDict(dict): @python_2_unicode_compatible -class ErrorList(UserList): +class ErrorList(UserList, list): """ A collection of errors that knows how to display itself in various formats. """ |