Procházet zdrojové kódy

Make less broken.

tags/v0.1^2
Ben Kurtovic před 12 roky
rodič
revize
d72be12d41
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      earwigbot/commands/dictionary.py

+ 1
- 1
earwigbot/commands/dictionary.py Zobrazit soubor

@@ -138,7 +138,7 @@ class Dictionary(Command):
senses = []
for line in body.splitlines():
line = line.strip()
if re.match("#\s*[^:*]", line):
if re.match("#\s*[^:*#]", line):
for regex, repl in substitutions:
line = re.sub(regex, repl, line)
line = self.strip_templates(line)


Načítá se…
Zrušit
Uložit