From fb048130885b4afb630c126b32991eca0739cded Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Sat, 23 Jan 2016 13:38:08 +0100 Subject: [PATCH] remove debug prints --- openlp/core/lib/renderer.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/openlp/core/lib/renderer.py b/openlp/core/lib/renderer.py index 97540e42d..f76d28853 100644 --- a/openlp/core/lib/renderer.py +++ b/openlp/core/lib/renderer.py @@ -548,15 +548,11 @@ def get_start_tags(raw_text): raw_tags = [] html_tags = [] for tag in FormattingTags.get_html_tags(): - print('looking at tag...') if tag['start tag'] == '{br}': continue if raw_text.count(tag['start tag']) != raw_text.count(tag['end tag']): - print('should append') raw_tags.append((raw_text.find(tag['start tag']), tag['start tag'], tag['end tag'])) html_tags.append((raw_text.find(tag['start tag']), tag['start html'])) - print(raw_tags) - print(html_tags) # Sort the lists, so that the tags which were opened first on the first slide (the text we are checking) will be # opened first on the next slide as well. raw_tags.sort(key=lambda tag: tag[0])