diff -r 6e676fb6ea44 -r 8aa053b99c24 mercurial/minirst.py --- a/mercurial/minirst.py Sun Feb 10 12:58:57 2013 +0100 +++ b/mercurial/minirst.py Sat Feb 09 21:51:21 2013 +0000 @@ -558,10 +558,7 @@ for row in table: l = [] for v in zip(row): - if not t: - l.append('%s' % v) - else: - l.append('%s' % v) + l.append('%s' % v) t.append(' %s\n' % ''.join(l)) out.append('\n%s
\n' % ''.join(t)) elif btype == 'definition':