aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/extensions/tables.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2014-07-11 21:24:30 -0400
committerWaylan Limberg <waylan@gmail.com>2014-07-11 21:24:30 -0400
commit7d728afc3a684afadc7fa5c4672811ac0cc2fa98 (patch)
tree25e65c3520c2f7760d48a33ed7bc2322feb3cc59 /markdown/extensions/tables.py
parentdf170411f369d20f85a4718698cdff100271b587 (diff)
downloadmarkdown-7d728afc3a684afadc7fa5c4672811ac0cc2fa98.tar.gz
markdown-7d728afc3a684afadc7fa5c4672811ac0cc2fa98.tar.bz2
markdown-7d728afc3a684afadc7fa5c4672811ac0cc2fa98.zip
Marked a bunch of lines as 'no cover'. Coverage at 91%
Diffstat (limited to 'markdown/extensions/tables.py')
-rw-r--r--markdown/extensions/tables.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/extensions/tables.py b/markdown/extensions/tables.py
index ad52ec1..cfac0bc 100644
--- a/markdown/extensions/tables.py
+++ b/markdown/extensions/tables.py
@@ -71,7 +71,7 @@ class TableProcessor(BlockProcessor):
c = etree.SubElement(tr, tag)
try:
c.text = cells[i].strip()
- except IndexError:
+ except IndexError: #pragma: no cover
c.text = ""
if a:
c.set('align', a)