aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/serializers.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2014-07-11 21:46:51 -0400
committerWaylan Limberg <waylan@gmail.com>2014-07-11 21:46:51 -0400
commitb27e1ea4b712d3b332f9eaec3c4b218fdf42eca3 (patch)
tree4ca47f5a78d6b94978ced6c71ce686a5bb2b8033 /markdown/serializers.py
parent16de7ed9de3d6aa464acd4a359a2e84a339768ba (diff)
downloadmarkdown-b27e1ea4b712d3b332f9eaec3c4b218fdf42eca3.tar.gz
markdown-b27e1ea4b712d3b332f9eaec3c4b218fdf42eca3.tar.bz2
markdown-b27e1ea4b712d3b332f9eaec3c4b218fdf42eca3.zip
Mark a few more lines with 'no cover' - missed them the first time through. The rest should have test cases added.
Diffstat (limited to 'markdown/serializers.py')
-rw-r--r--markdown/serializers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/serializers.py b/markdown/serializers.py
index 72fcef6..f53ae31 100644
--- a/markdown/serializers.py
+++ b/markdown/serializers.py
@@ -44,7 +44,7 @@ ElementTree = util.etree.ElementTree
QName = util.etree.QName
if hasattr(util.etree, 'test_comment'): #pragma: no cover
Comment = util.etree.test_comment
-else: #prgama: no cover
+else: #pragma: no cover
Comment = util.etree.Comment
PI = util.etree.PI
ProcessingInstruction = util.etree.ProcessingInstruction