Procházet zdrojové kódy

Disabling auto-linker.

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

+ 4
- 3
earwigbot/commands/link.py Zobrazit soubor

@@ -30,9 +30,10 @@ class Command(BaseCommand):
name = "link"

def check(self, data):
if ((data.is_command and data.command == "link") or
(("[[" in data.msg and "]]" in data.msg) or
("{{" in data.msg and "}}" in data.msg))):
# if ((data.is_command and data.command == "link") or
# (("[[" in data.msg and "]]" in data.msg) or
# ("{{" in data.msg and "}}" in data.msg))):
if data.is_command and data.command == "link":
return True
return False



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