Explorar el Código

Capitalise replies in !quit

tags/v0.1^2
Justin Yulli Kim hace 12 años
padre
commit
c532384026
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      earwigbot/commands/quit.py

+ 2
- 2
earwigbot/commands/quit.py Ver fichero

@@ -30,7 +30,7 @@ class Quit(Command):


def process(self, data): def process(self, data):
if data.host not in self.config.irc["permissions"]["owners"]: if data.host not in self.config.irc["permissions"]["owners"]:
self.reply(data, "you must be a bot owner to use this command.")
self.reply(data, "You must be a bot owner to use this command.")
return return
if data.command == "quit": if data.command == "quit":
self.do_quit(data) self.do_quit(data)
@@ -45,7 +45,7 @@ class Quit(Command):
reason = " ".join(args) reason = " ".join(args)
else: else:
if not args or args[0].lower() != data.my_nick: if not args or args[0].lower() != data.my_nick:
self.reply(data, "to confirm this action, the first argument must be my name.")
self.reply(data, "To confirm this action, the first argument must be my name.")
return return
reason = " ".join(args[1:]) reason = " ".join(args[1:])




Cargando…
Cancelar
Guardar