Fix adding epilogue in src2asciidoc.py.

This commit is contained in:
Florian Bruhin 2015-01-20 00:02:16 +01:00
parent 6a7e454789
commit f4479a8140

View File

@ -389,7 +389,7 @@ def regenerate_manpage(filename):
options = '\n'.join(groups)
# epilog
if parser.epilog is not None:
options.append(parser.epilog)
options += parser.epilog
_format_block(filename, 'options', options)