help: add missed last new line to "internals" topic
Caught by test-gendoc.t.
--- 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')),