Changes between Version 45 and Version 46 of BetterErrorMessages


Ignore:
Timestamp:
Apr 15, 2013, 4:29:24 AM (11 years ago)
Author:
Chris Wilson
Comment:

link to #19560

Legend:

Unmodified
Added
Removed
Modified
  • BetterErrorMessages

    v45 v46  
    119119I think it would be a really good idea to make it really clear from the error message what you need to do (blank=True requires null=True on foreign key fields).
    120120
    121 Unfortunately we can't automatically fix it, because if the field is left blank, the developer might be intending to supply the value automatically before save (https://code.djangoproject.com/ticket/13824).
     121Unfortunately we can't automatically fix it, because if the field is left blank, the developer might be intending to supply the value automatically before save (#13824).
     122
     123https://code.djangoproject.com/ticket/19560
     124
     125{{{
     126received a naive datetime while time zone support is active
     127}}}
     128
     129This message doesn't help to figure out which field of which model contained a naive datetime. Patch in #19560.
    122130
    123131== django.forms ==
Back to Top