Changes between Initial Version and Version 1 of Ticket #23976


Ignore:
Timestamp:
Dec 9, 2014, 6:51:17 AM (9 years ago)
Author:
archivarius888
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23976 – Description

    initial v1  
    11Redefinition variable message by django/django/core/exceptions.py
    22line 114,    for message in message:
     3
     4below line, 116:
     5
     6{{{
     7                if not isinstance(message, ValidationError):
     8                    message = ValidationError(message)
     9                self.error_list.extend(message.error_list)
     10}}}
     11
     12if message isinstance of dict: AttributeError: 'ValidationError' object has no attribute 'error_list'
Back to Top