From ad452e43f639a1ad2b02e3d94dd21c2fd0585f9d Mon Sep 17 00:00:00 2001 From: Justin Yulli Kim Date: Mon, 16 Jul 2012 18:34:25 -0400 Subject: [PATCH] Capitalise replies in !status --- earwigbot/commands/afc_status.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/earwigbot/commands/afc_status.py b/earwigbot/commands/afc_status.py index 1630946..168c719 100644 --- a/earwigbot/commands/afc_status.py +++ b/earwigbot/commands/afc_status.py @@ -54,17 +54,17 @@ class AFCStatus(Command): action = data.args[0].lower() if action.startswith("sub") or action == "s": subs = self.count_submissions() - msg = "there are \x0305{0}\x0F pending AfC submissions (\x0302WP:AFC\x0F)." + msg = "There are \x0305{0}\x0F pending AfC submissions (\x0302WP:AFC\x0F)." self.reply(data, msg.format(subs)) elif action.startswith("redir") or action == "r": redirs = self.count_redirects() - msg = "there are \x0305{0}\x0F open redirect requests (\x0302WP:AFC/R\x0F)." + msg = "There are \x0305{0}\x0F open redirect requests (\x0302WP:AFC/R\x0F)." self.reply(data, msg.format(redirs)) elif action.startswith("file") or action == "f": files = self.count_redirects() - msg = "there are \x0305{0}\x0F open file upload requests (\x0302WP:FFU\x0F)." + msg = "There are \x0305{0}\x0F open file upload requests (\x0302WP:FFU\x0F)." self.reply(data, msg.format(files)) elif action.startswith("agg") or action == "a": @@ -79,14 +79,14 @@ class AFCStatus(Command): self.reply(data, msg.format(data.args[1])) return aggregate = self.get_aggregate(agg_num) - msg = "aggregate is \x0305{0}\x0F (AfC {1})." + msg = "Aggregate is \x0305{0}\x0F (AfC {1})." self.reply(data, msg.format(agg_num, aggregate)) elif action.startswith("nocolor") or action == "n": self.reply(data, self.get_status(color=False)) else: - msg = "unknown argument: \x0303{0}\x0F. Valid args are 'subs', 'redirs', 'files', 'agg', 'nocolor'." + msg = "Unknown argument: \x0303{0}\x0F. Valid args are 'subs', 'redirs', 'files', 'agg', 'nocolor'." self.reply(data, msg.format(data.args[0])) else: