From 52cfbad141253f850a13913be689582fb8bf8cad Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sat, 18 Jul 2015 04:31:19 -0400 Subject: [PATCH] Bugfix for a command suggestion. --- earwigbot/commands/stalk.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/earwigbot/commands/stalk.py b/earwigbot/commands/stalk.py index 0fb4b81..135bef3 100644 --- a/earwigbot/commands/stalk.py +++ b/earwigbot/commands/stalk.py @@ -210,8 +210,8 @@ class Stalk(Command): "View your active {2} with \x0306!{2}\x0F.") if data.is_admin: msg += (" As a bot admin, you can clear all active {2} on that " - "{1} with \x0306!un{0}all {2}\x0F.") - self.reply(data, msg.format(verb, stalktype, plural)) + "{1} with \x0306!un{0}all {3}\x0F.") + self.reply(data, msg.format(verb, stalktype, plural, target)) def _remove_all_stalks(self, stalktype, data, target): """Remove all entries for a particular target from the given table."""