Browse Source

Missed a pipe.

tags/v0.1^2
Ben Kurtovic 12 years ago
parent
commit
abcd19a9a8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      earwigbot/tasks/drn_clerkbot.py

+ 1
- 1
earwigbot/tasks/drn_clerkbot.py View File

@@ -322,7 +322,7 @@ class DRNClerkBot(Task):
age = (datetime.utcnow() - case.file_time).total_seconds()
if age > 60 * 60 * 24 * 7:
if not case.very_old_notified:
template = "{{subst:" + self.tl_notify_stale
template = "{{subst:" + self.tl_notify_stale + "|"
template += case.title.replace("|", "|") + "}}"
notice = _Notice(self.very_old_title, template)
case.very_old_notified = True


Loading…
Cancel
Save