From 78043a12ca1abcb8050f572c9d861df181c14671 Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Fri, 20 Aug 2010 14:50:27 +0200 Subject: Bugfix for table output. Apparently, RST requires the first line of tables to be drawn with minuses, not equal signs. --- src/rst_tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/rst_tables.py b/src/rst_tables.py index 1d4b04b..1cae9a9 100644 --- a/src/rst_tables.py +++ b/src/rst_tables.py @@ -229,7 +229,7 @@ def draw_table(table, manual_widths=None): header_line = table_line(sep_col_widths, header=True) normal_line = table_line(sep_col_widths, header=False) - output = [header_line] + output = [normal_line] first = True for row in table: -- cgit v1.2.3