Django

Code

Changeset 8933

Show
Ignore:
Timestamp:
09/03/08 13:44:19 (3 months ago)
Author:
mtredinnick
Message:

Fixed #8614 -- Typo fix.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/comments/models.py

    r8803 r8933  
    4545 
    4646    # Who posted this comment? If ``user`` is set then it was an authenticated 
    47     # user; otherwise at least person_name should have been set and the comment 
     47    # user; otherwise at least user_name should have been set and the comment 
    4848    # was posted by a non-authenticated user. 
    4949    user        = models.ForeignKey(User, blank=True, null=True, related_name="%(class)s_comments")