mirror of
https://github.com/django/django.git
synced 2025-07-24 05:36:15 +00:00
Removed unneeded hint=None/obj=None in system check messages.
This commit is contained in:
parent
36f1f5cfb0
commit
004ba0f99e
30 changed files with 287 additions and 495 deletions
|
@ -39,7 +39,7 @@ check function::
|
|||
errors.append(
|
||||
Error(
|
||||
'an error',
|
||||
hint=None,
|
||||
hint='A hint.',
|
||||
obj=checked_object,
|
||||
id='myapp.E001',
|
||||
)
|
||||
|
@ -195,7 +195,7 @@ Messages are comparable. That allows you to easily write tests::
|
|||
expected_errors = [
|
||||
Error(
|
||||
'an error',
|
||||
hint=None,
|
||||
hint='A hint.',
|
||||
obj=checked_object,
|
||||
id='myapp.E001',
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue