Django

Code

Changeset 4292

Show
Ignore:
Timestamp:
01/05/07 16:15:46 (2 years ago)
Author:
adrian
Message:

Added note to docs/newforms.txt that points out ValidationError? is a different class than previously

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/newforms.txt

    r4291 r4292  
    577577    ValidationError: [u'Enter a valid e-mail address.'] 
    578578 
     579If you've used Django's old forms/validation framework, take care in noticing 
     580this ``ValidationError`` is different than the previous ``ValidationError``. 
     581This one lives at ``django.newforms.ValidationError`` rather than 
     582``django.core.validators.ValidationError``. 
     583 
    579584Core field arguments 
    580585--------------------