aboutsummaryrefslogtreecommitdiffstats
path: root/src/rst_tables.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/rst_tables.py')
-rw-r--r--src/rst_tables.py2
1 files changed, 1 insertions, 1 deletions
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: