From 106b72ad709aa1e58f96a65d714ef31e79e640fd Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 9 May 2023 07:33:58 -0700 Subject: [PATCH] WIP: Remove print statement in do_replace function. --- utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/utils.py b/utils.py index e82e307ab..d85a578c8 100644 --- a/utils.py +++ b/utils.py @@ -77,7 +77,6 @@ def do_replace(fname, before_text, after_text): # does it want to make a new file? if not fname.exists() and not before_text.strip(): - print("Creating empty file:", fname) fname.touch() content = fname.read_text()