Changes between Initial Version and Version 1 of Ticket #23976
- Timestamp:
- Dec 9, 2014, 6:51:17 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23976 – Description
initial v1 1 1 Redefinition variable message by django/django/core/exceptions.py 2 2 line 114, for message in message: 3 4 below line, 116: 5 6 {{{ 7 if not isinstance(message, ValidationError): 8 message = ValidationError(message) 9 self.error_list.extend(message.error_list) 10 }}} 11 12 if message isinstance of dict: AttributeError: 'ValidationError' object has no attribute 'error_list'