浏览代码

Er, fix that.

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

+ 2
- 2
earwigbot/commands/dictionary.py 查看文件

@@ -110,8 +110,8 @@ class Dictionary(Command):
for part, fullname in parts_of_speech.iteritems():
regexes = [
"{0}\s*{1}\s*{0}".format(blocks, fullname),
"{0}\s*\{\{{1}\}\}\s*{0}".format(blocks, fullname),
"{0}\s*\{\{{1}\}\}\s*{0}".format(blocks, fullname.lower()),
blocks + "\s*\{\{" + fullname + "\}\}\s*" + blocks,
blocks + "\s*\{\{" + fullname.lower() + "\}\}\s*" + blocks,
]
for regex in regex:
if re.search(regex, section):


正在加载...
取消
保存