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))