Browse Source

Er, fix that.

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

+ 2
- 2
earwigbot/commands/dictionary.py View File

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


Loading…
Cancel
Save