X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=mudpy%2Fcommand.py;h=250fb6f1516bb5392c37743f0d9084f7e2740d3f;hp=95fb793d3f7e25fcf92b36b81ea95e1756658002;hb=45b739b13adf159f6c255f0c66d11f0f3161760b;hpb=de65a162dc402df0e052c9a6e79a533a00036902 diff --git a/mudpy/command.py b/mudpy/command.py index 95fb793..250fb6f 100644 --- a/mudpy/command.py +++ b/mudpy/command.py @@ -161,7 +161,8 @@ def help(actor, parameters): output = "$(red)" else: output = "$(grn)" - output += parameters + "$(nrm) - " + description + "$(eol)$(eol)" + output = "%s%s$(nrm) - %s$(eol)$(eol)" % ( + output, command.subkey, description) # add the help text if provided help_text = command.get("help")