diff options
Diffstat (limited to 'forum/management/commands')
-rwxr-xr-x | forum/management/commands/send_email_alerts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forum/management/commands/send_email_alerts.py b/forum/management/commands/send_email_alerts.py index 42a6b3b3..5204a81e 100755 --- a/forum/management/commands/send_email_alerts.py +++ b/forum/management/commands/send_email_alerts.py @@ -235,7 +235,7 @@ class Command(NoArgsCommand): url_prefix = settings.APP_URL subject = _('email update message subject') print 'have %d updated questions for %s' % (num_q, user.username) - text = ungettext('%(name)s, this is an update message header for a question', + text = ungettext('%(name)s, this is an update message header for %(num)d question', '%(name)s, this is an update message header for %(num)d questions',num_q) \ % {'num':num_q, 'name':user.username} |