Enumerate window layout choices in help
This commit is contained in:
parent
6352f585e8
commit
d1df5ad4e2
1 changed files with 2 additions and 2 deletions
|
|
@ -57,7 +57,7 @@
|
|||
--window-layout
|
||||
type=choices
|
||||
choices={window_layout_choices}
|
||||
The window layout to use on startup
|
||||
The window layout to use on startup. Choices are: {window_layout_choices}
|
||||
|
||||
|
||||
--session
|
||||
|
|
@ -405,7 +405,7 @@ def options_spec():
|
|||
if not hasattr(options_spec, 'ans'):
|
||||
options_spec.ans = OPTIONS.format(
|
||||
appname=appname, config_path=defconf,
|
||||
window_layout_choices=','.join(all_layouts)
|
||||
window_layout_choices=', '.join(all_layouts)
|
||||
)
|
||||
return options_spec.ans
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue