From d23596706d95600bb7bf15b11f7e0108a2d5afbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi?= Date: Fri, 22 Nov 2019 11:49:22 +0100 Subject: [PATCH] Remove debug prints --- markdownify/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/markdownify/__init__.py b/markdownify/__init__.py index b7c9545..f0fe118 100644 --- a/markdownify/__init__.py +++ b/markdownify/__init__.py @@ -152,9 +152,7 @@ class MarkdownConverter(object): def convert_list(self, el, text): nested = False before_paragraph = False - print(el.name, repr(el.next_sibling), repr(text)) if el.next_sibling and el.next_sibling.name not in ['ul', 'ol']: - print(el.name, repr(el.next_sibling)) before_paragraph = True while el: if el.name == 'li':