Django

Code

Changeset 3942

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

091-bugfixes: backporting fix in [3936] to 0.91-bugfixes

Files:

Legend:

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

    r1364 r3942  
    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') % \ 
     110                'This comment was posted by a user who has posted fewer than %(count)s comments:\n\n%(text)s', settings.COMMENTS_FIRST_FEW) % \ 
    111111                {'count': COMMENTS_FIRST_FEW, 'text': c.get_as_text()} 
    112112            mail_managers("Comment posted by rookie user", message)