Django

Code

Changeset 3943

Show
Ignore:
Timestamp:
10/27/06 14:19:28 (2 years ago)
Author:
ubernostrum
Message:

0.91-bugfixes: corrected version of previous (COMMENTS_FIRST_FEW is imported directly)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/0.91-bugfixes/django/contrib/comments/views/comments.py

    r3942 r3943  
    108108        if self.user_cache.get_comments_comment_count() <= COMMENTS_FIRST_FEW: 
    109109            message = ngettext('This comment was posted by a user who has posted fewer than %(count)s comment:\n\n%(text)s', 
    110                 'This comment was posted by a user who has posted fewer than %(count)s comments:\n\n%(text)s', settings.COMMENTS_FIRST_FEW) % \ 
     110                'This comment was posted by a user who has posted fewer than %(count)s comments:\n\n%(text)s', COMMENTS_FIRST_FEW) % \ 
    111111                {'count': COMMENTS_FIRST_FEW, 'text': c.get_as_text()} 
    112112            mail_managers("Comment posted by rookie user", message)