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 3368a6f..e1e3842 100644
--- a/src/rst_tables.py
+++ b/src/rst_tables.py
@@ -37,7 +37,7 @@ def unify_table(table):
def parse_table(raw_lines):
- mkfields = lambda line: re.split('\s\s+', line)
+ mkfields = lambda line: re.split('\s\s+', line.rstrip())
output = map(mkfields, raw_lines)
output = unify_table(output)
return output