Mercurial > public > mercurial-scm > hg-stable
diff mercurial/help.py @ 27400:64208bd4c580
help: add missed last new line to "internals" topic
Caught by test-gendoc.t.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Thu, 17 Dec 2015 22:29:41 +0900 |
parents | dfab0afde928 |
children | 3ce1d50daa99 |
line wrap: on
line diff
--- a/mercurial/help.py Wed Dec 16 20:58:26 2015 -0600 +++ b/mercurial/help.py Thu Dec 17 22:29:41 2015 +0900 @@ -174,9 +174,9 @@ """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')),