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