summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docutils/docutils/parsers/rst/directives/tables.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/docutils/docutils/parsers/rst/directives/tables.py b/docutils/docutils/parsers/rst/directives/tables.py
index 446034828..8212f2cfc 100644
--- a/docutils/docutils/parsers/rst/directives/tables.py
+++ b/docutils/docutils/parsers/rst/directives/tables.py
@@ -64,8 +64,11 @@ class Table(Directive):
table_head = []
max_header_cols = 0
if 'header' in self.options: # separate table header in option
+ with warnings.catch_warnings():
+ warnings.simplefilter('ignore')
+ header_dialect = self.HeaderDialect()
rows, max_header_cols = self.parse_csv_data_into_rows(
- self.options['header'].split('\n'), self.HeaderDialect(),
+ self.options['header'].split('\n'), header_dialect,
source)
table_head.extend(rows)
return table_head, max_header_cols