changeset 6654 | 2713e42dcf4e |
parent 6612 | 59e087f99920 |
child 7012 | 78341ea65d16 |
--- a/doc/gendoc.py Tue Jun 03 20:56:54 2008 +0200 +++ b/doc/gendoc.py Tue Jun 03 21:03:51 2008 +0200 @@ -92,11 +92,10 @@ ui.write(_(" aliases: %s\n\n") % " ".join(d['aliases'])) # print topics - for t in helptable: + for t, doc in helptable: l = t.split("|") section = l[-1] underlined(_(section).upper()) - doc = helptable[t] if callable(doc): doc = doc() ui.write(_(doc))