add space between command and usage string
This commit is contained in:
parent
1654fafd7e
commit
69be51e502
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ class Module(ModuleManager.BaseModule):
|
|||
usages = [
|
||||
utils.parse.argument_spec_human(s, context) for s in specs]
|
||||
command = "%s%s" % (event["command_prefix"], event["command"])
|
||||
usages = ["%s%s" % (command, u) for u in usages]
|
||||
usages = ["%s %s" % (command, u) for u in usages]
|
||||
|
||||
error_out = "%s (Usage: %s)" % (overall_error, " | ".join(usages))
|
||||
|
||||
|
|
Loading…
Reference in a new issue