What steps will reproduce the problem?
1. manage.py validate
What is the expected output? What do you see instead?
got validate error
Error: One or more models did not validate:
forum.thread: "sticky": BooleanFields do not accept null values. Use a
NullBooleanField instead.
forum.thread: "closed": BooleanFields do not accept null values. Use a
NullBooleanField instead.
What version of the product are you using? On what operating system?
latest svn checkout
Please provide any additional information below.
the latest django\core\management\validation.py add this validation.
if isinstance(f, models.BooleanField) and getattr(f, 'null', False):
e.add(opts, '"%s": BooleanFields do not accept null values.
Use a NullBooleanField instead.' % f.name)
Mergedinto: 59