From c5323840267692d97e9602bbe61ed2fdfc5fef2b Mon Sep 17 00:00:00 2001 From: Justin Yulli Kim Date: Tue, 17 Jul 2012 22:06:06 -0400 Subject: [PATCH] Capitalise replies in !quit --- earwigbot/commands/quit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/earwigbot/commands/quit.py b/earwigbot/commands/quit.py index 4e6bc70..5d8a1b2 100644 --- a/earwigbot/commands/quit.py +++ b/earwigbot/commands/quit.py @@ -30,7 +30,7 @@ class Quit(Command): def process(self, data): 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 if data.command == "quit": self.do_quit(data) @@ -45,7 +45,7 @@ class Quit(Command): reason = " ".join(args) else: 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 reason = " ".join(args[1:])