From 56c1c08f3991446a54db9232ead40c5cf4c3c7cf Mon Sep 17 00:00:00 2001 From: Justin Yulli Kim Date: Mon, 16 Jul 2012 19:11:08 -0400 Subject: [PATCH] Capitalise replies in !chanops: !voice, !devoice, !op, !deop, !join, !part --- earwigbot/commands/chanops.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/earwigbot/commands/chanops.py b/earwigbot/commands/chanops.py index 8b754e6..97c4fb9 100644 --- a/earwigbot/commands/chanops.py +++ b/earwigbot/commands/chanops.py @@ -30,11 +30,11 @@ class ChanOps(Command): def process(self, data): if data.command == "chanops": - msg = "available commands are !voice, !devoice, !op, !deop, !join, and !part." + msg = "Available commands are !voice, !devoice, !op, !deop, !join, and !part." self.reply(data, msg) return if data.host not in self.config.irc["permissions"]["admins"]: - self.reply(data, "you must be a bot admin to use this command.") + self.reply(data, "You must be a bot admin to use this command.") return if data.command == "join": @@ -59,7 +59,7 @@ class ChanOps(Command): if not channel.startswith("#"): channel = "#" + channel else: - msg = "you must specify a channel to join or part from." + msg = "You must specify a channel to join or part from." self.reply(data, msg) return