ソースを参照

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}'"


読み込み中…
キャンセル
保存