From 9626ec5330b8288dc9ee4fc71738b7463e1956f0 Mon Sep 17 00:00:00 2001 From: Jonathan Grizou Date: Sun, 7 Jul 2013 21:12:10 +0200 Subject: [PATCH] Delete remaining print. --- papers/plugs/texnote/autofill_tools.py | 1 - 1 file changed, 1 deletion(-) diff --git a/papers/plugs/texnote/autofill_tools.py b/papers/plugs/texnote/autofill_tools.py index 50aae6d..784e5cb 100644 --- a/papers/plugs/texnote/autofill_tools.py +++ b/papers/plugs/texnote/autofill_tools.py @@ -58,7 +58,6 @@ def find_pattern(text, pattern): def replace_pattern(text, pattern, info): repl = fill_pattern(pattern, info) for found in find_pattern(text, pattern): - print found text = text.replace(found, repl) return text