Parcourir la source

nicer syntax

tags/v0.1
Ben Kurtovic il y a 13 ans
Parent
révision
83a5d04624
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. +1
    -2
      irc/commands/chanops.py

+ 1
- 2
irc/commands/chanops.py Voir le fichier

@@ -14,8 +14,7 @@ class ChanOps(BaseCommand):
return "%s users in the channel." % action

def check(self, data):
if data.is_command and (data.command == "voice" or data.command == "devoice"
or data.command == "op" or data.command == "deop"):
if data.is_command and data.command in ["voice", "devoice", "op", "deop"]:
return True
return False



Chargement…
Annuler
Enregistrer