From fc579ef0bbf19f1f55d131735b37a6229a038903 Mon Sep 17 00:00:00 2001 From: tajmone Date: Thu, 19 Mar 2015 20:26:50 +0100 Subject: [PATCH] Color Cyan the comma in Cmd aliases and suggestions --- evennia/commands/default/help.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evennia/commands/default/help.py b/evennia/commands/default/help.py index 44b6daf8ce..35f3a7d120 100644 --- a/evennia/commands/default/help.py +++ b/evennia/commands/default/help.py @@ -29,12 +29,12 @@ def format_help_entry(title, help_text, aliases=None, suggested=None): if title: string += "{CHelp topic for {w%s{n" % title if aliases: - string += " {C(aliases: {w%s{n{C){n" % (", ".join(aliases)) + string += " {C(aliases: {w%s{n{C){n" % ("{C,{n ".join(aliases)) if help_text: string += "\n%s" % dedent(help_text.rstrip()) if suggested: string += "\n\n{CSuggested:{n " - string += "{w%s{n" % fill(", ".join(suggested)) + string += "{w%s{n" % fill("{C,{n ".join(suggested)) string.strip() string += "\n" + _SEP return string