浏览代码

Fix another bug.

tags/v0.1^2
Ben Kurtovic 12 年前
父节点
当前提交
4110b26da1
共有 1 个文件被更改,包括 6 次插入5 次删除
  1. +6
    -5
      earwigbot/tasks/drn_clerkbot.py

+ 6
- 5
earwigbot/tasks/drn_clerkbot.py 查看文件

@@ -498,11 +498,12 @@ class DRNClerkBot(Task):
user = re.search("[:*#]{,5} \{\{User\|(.*?)\}\}", line)
if user:
party = user.group(1).replace("_", " ").strip()
party = party[0].upper() + party[1:]
if party == case.file_user:
continue
notice = _Notice("User talk:" + party, template, too_late)
notices.append(notice)
if party:
party = party[0].upper() + party[1:]
if party == case.file_user:
continue
notice = _Notice("User talk:" + party, template, too_late)
notices.append(notice)

case.parties_notified = True
log = u" {0}: will try to notify {1} parties with '{2}'"


正在加载...
取消
保存