# HG changeset patch # User Yuya Nishihara # Date 2015-12-17 13:29:41 # Node ID 64208bd4c580e89373a2ab9a513f9f210b2c2db4 # Parent 425dc70037f7937a61b355bbc564877edd301ac3 help: add missed last new line to "internals" topic Caught by test-gendoc.t. diff --git a/mercurial/help.py b/mercurial/help.py --- a/mercurial/help.py +++ b/mercurial/help.py @@ -174,9 +174,9 @@ def internalshelp(ui): """Generate the index for the "internals" topic.""" lines = [] for names, header, doc in internalstable: - lines.append(' :%s: %s' % (names[0], header)) + lines.append(' :%s: %s\n' % (names[0], header)) - return '\n'.join(lines) + return ''.join(lines) helptable = sorted([ (["config", "hgrc"], _("Configuration Files"), loaddoc('config')),