Fix displaying help of keyword options.

This commit is contained in:
Bastian Kleineidam 2010-03-06 13:30:32 +01:00
parent 2e8800504c
commit 12d0340af8
1 changed files with 3 additions and 4 deletions

View File

@ -287,13 +287,12 @@ class Baker(object):
file.write(format_paras(paras[1:], 76, indent=4))
file.write("\n")
# Get a sorted list of keyword argument names
keynames = sorted([key for key, value in cmd.keywords.items() if value is not None])
# Print documentation for keyword options
if cmd.keywords:
if keynames:
file.write("Options:\n\n")
# Get a sorted list of keyword argument names
keynames = sorted(cmd.keywords.keys())
# Make formatted headings, e.g. " -k --keyword ", and put them in
# a list like [(name, heading), ...]
heads = []