From 7509629b44da1f8c40ba8417a35fe367e796e72b Mon Sep 17 00:00:00 2001 From: Thomas Oettli Date: Wed, 23 Oct 2019 07:36:24 +0200 Subject: [PATCH] Fix brackets --- pyquarantine/notifications.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyquarantine/notifications.py b/pyquarantine/notifications.py index cdc5504..8eed921 100644 --- a/pyquarantine/notifications.py +++ b/pyquarantine/notifications.py @@ -330,7 +330,7 @@ class EMailNotification(BaseNotification): image_replaced = False if self.strip_images: self.logger.debug( - "{}: looking for images to strip".format(queueid) + "{}: looking for images to strip".format(queueid)) for element in soup("img"): if "src" in element.attrs.keys(): self.logger.debug( @@ -339,7 +339,7 @@ class EMailNotification(BaseNotification): element.extract() elif self.replacement_img: self.logger.debug( - "{}: looking for images to replace".format(queueid) + "{}: looking for images to replace".format(queueid)) for element in soup("img"): if "src" in element.attrs.keys(): self.logger.debug(