Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ada_reducer/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def attempt_delete(self, file):
buf = Buffer(file)
os.remove(file)
if self.run_predicate():
log("... yay, deleted \o/")
log("... yay, deleted \\o/")
else:
# put the file back
buf.save()
Expand Down Expand Up @@ -354,7 +354,7 @@ def apply_strategies_on_file(self, file, buf) -> int:
# Fin

if deletion_successful:
log(" File deleted! \o/")
log(" File deleted! \\o/")
chars_removed = count
else:
buf = Buffer(file)
Expand Down