fix language

This commit is contained in:
Antonio J. Delgado 2025-02-05 12:22:22 +02:00
parent 5f85960d54
commit 35fbf611ed

View file

@ -225,13 +225,13 @@ class ImapFilter:
new_content = re.sub(search, replacement, content)
if content != new_content:
self._log.debug(
"Line it's different, so replacing it with '%s'",
"Line is different, so replacing it with '%s'",
replacement
)
content = f"{new_content}\n"
else:
self._log.debug(
"Line it is NOT different, not replacing it. Search: '%s'",
"Line is NOT different, not replacing it. Search: '%s'",
search
)
else: