diff -r a78d8edaeedd -r 2713e42dcf4e doc/gendoc.py --- 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))