From 259fcb575a38f98b4bd49413071f9abcf1f03c34 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Thu, 14 Apr 2011 20:33:12 -0400 Subject: [PATCH] poor color choice --- irc/commands/help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc/commands/help.py b/irc/commands/help.py index 2adb7eb..791cfaa 100644 --- a/irc/commands/help.py +++ b/irc/commands/help.py @@ -28,6 +28,6 @@ def do_command_help(): info = this_command.__doc__ if info: - actions.say(data.chan, "\x02%s\x0F: Info for command \x0303%s\x0301: \x0302%s\x0301" % (data.nick, command, info)) + actions.say(data.chan, "\x02%s\x0F: Info for command \x0303%s\x0301: %s" % (data.nick, command, info)) else: actions.say(data.chan, "\x02%s\x0F: Sorry, no information for \x0303%s\x0301." % (data.nick, command))