Loading django/core/checks/messages.py +1 −1 Original line number Diff line number Diff line Loading @@ -15,7 +15,7 @@ CRITICAL = 50 @python_2_unicode_compatible class CheckMessage(object): def __init__(self, level, msg, hint, obj=None, id=None): def __init__(self, level, msg, hint=None, obj=None, id=None): assert isinstance(level, int), "The first argument should be level." self.level = level self.msg = msg Loading docs/topics/checks.txt +2 −6 Original line number Diff line number Diff line Loading @@ -78,12 +78,8 @@ Constructor arguments are: ``hint`` A single-line string providing a hint for fixing the problem. If no hint can be provided, or the hint is self-evident from the error message, a value of ``None`` can be used:: Error('error message') # Will not work. Error('error message', None) # Good Error('error message', hint=None) # Better can be provided, or the hint is self-evident from the error message, the hint can be omitted, or a value of ``None`` can be used. ``obj`` Optional. An object providing context for the message (for example, the Loading Loading
django/core/checks/messages.py +1 −1 Original line number Diff line number Diff line Loading @@ -15,7 +15,7 @@ CRITICAL = 50 @python_2_unicode_compatible class CheckMessage(object): def __init__(self, level, msg, hint, obj=None, id=None): def __init__(self, level, msg, hint=None, obj=None, id=None): assert isinstance(level, int), "The first argument should be level." self.level = level self.msg = msg Loading
docs/topics/checks.txt +2 −6 Original line number Diff line number Diff line Loading @@ -78,12 +78,8 @@ Constructor arguments are: ``hint`` A single-line string providing a hint for fixing the problem. If no hint can be provided, or the hint is self-evident from the error message, a value of ``None`` can be used:: Error('error message') # Will not work. Error('error message', None) # Good Error('error message', hint=None) # Better can be provided, or the hint is self-evident from the error message, the hint can be omitted, or a value of ``None`` can be used. ``obj`` Optional. An object providing context for the message (for example, the Loading