Merge pull request #1548 from sorressean/spawn-typofix
Fixed typo in help message that shows syntax.
This commit is contained in:
commit
88b34d3a4d
1 changed files with 1 additions and 1 deletions
|
|
@ -2686,7 +2686,7 @@ class CmdSpawn(COMMAND_DEFAULT_CLASS):
|
||||||
def _show_prototypes(prototypes):
|
def _show_prototypes(prototypes):
|
||||||
"""Helper to show a list of available prototypes"""
|
"""Helper to show a list of available prototypes"""
|
||||||
prots = ", ".join(sorted(prototypes.keys()))
|
prots = ", ".join(sorted(prototypes.keys()))
|
||||||
return "\nAvailable prototypes (case sensistive): %s" % (
|
return "\nAvailable prototypes (case sensitive): %s" % (
|
||||||
"\n" + utils.fill(prots) if prots else "None")
|
"\n" + utils.fill(prots) if prots else "None")
|
||||||
|
|
||||||
prototypes = spawn(return_prototypes=True)
|
prototypes = spawn(return_prototypes=True)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue