WIP: Remove print statement in do_replace function.

This commit is contained in:
Paul Gauthier 2023-05-09 07:33:58 -07:00
parent fb12b73975
commit 106b72ad70

View file

@ -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()