From 4055aa4e95c11d111e9144dea0ec7ec4931d0d2d Mon Sep 17 00:00:00 2001 From: Justin Yulli Kim Date: Mon, 16 Jul 2012 18:55:48 -0400 Subject: [PATCH] Capitalise replies in !calc --- earwigbot/commands/calc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/earwigbot/commands/calc.py b/earwigbot/commands/calc.py index aead943..de16202 100644 --- a/earwigbot/commands/calc.py +++ b/earwigbot/commands/calc.py @@ -32,7 +32,7 @@ class Calc(Command): def process(self, data): if not data.args: - self.reply(data, "what do you want me to calculate?") + self.reply(data, "What do you want me to calculate?") return query = ' '.join(data.args)