Django

Code

Changeset 2854

Show
Ignore:
Timestamp:
05/05/06 22:32:01 (3 years ago)
Author:
adrian
Message:

Fixed #1779 -- Fixed typo in docs/db-api.txt. Thanks, bde3@cornell.edu

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/db-api.txt

    r2837 r2854  
    2323        email = models.URLField() 
    2424 
    25         class __str__(self): 
     25        def __str__(self): 
    2626            return self.name 
    2727