From 0211ac66193fa1621e3b63dbd1a87c224b6b48cc Mon Sep 17 00:00:00 2001 From: Matthew Tretter Date: Wed, 31 Jul 2013 17:18:25 -0400 Subject: [PATCH] Lint code --- markdownify/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdownify/__init__.py b/markdownify/__init__.py index 86e861d..496b12e 100644 --- a/markdownify/__init__.py +++ b/markdownify/__init__.py @@ -17,7 +17,7 @@ class MarkdownConverter(object): def __init__(self, tags_to_strip=None, tags_to_convert=None): if tags_to_strip is not None and tags_to_convert is not None: raise ValueError('You may specify either tags to strip or tags to' - ' convert, but not both.') + ' convert, but not both.') self.tags_to_strip = tags_to_strip self.tags_to_convert = tags_to_convert