Changes between Version 28 and Version 29 of BetterErrorMessages


Ignore:
Timestamp:
Jan 15, 2010, 3:19:06 PM (15 years ago)
Author:
Roman Odaisky
Comment:

+django.forms

Legend:

Unmodified
Added
Removed
Modified
  • BetterErrorMessages

    v28 v29  
    9191In certain situations with PostgreSQL, a bogus error message about SET TIME ZONE may be returned. See #3179 (which is closed, but has a description of the problem).  The real error message can probably be found in the postgres log file.
    9292
     93== django.forms ==
     94
     95{{{
     96AttributeError: 'NoneType' object has no attribute 'widget'
     97}}}
     98(in BaseForm.full_clean)
     99
     100A ModelForm refers to a nonexistent field.
     101
    93102== django.http ==
    94103
Back to Top