2 Commits
1.0.1 ... 1.0.2

Author SHA1 Message Date
567e41362b Change version to 1.0.2 2020-02-29 00:59:24 +01:00
0fa6ddd870 Fix typo 2020-02-29 00:55:41 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -263,7 +263,7 @@ class EMailNotification(BaseNotification):
# completly remove bad elements # completly remove bad elements
for element in soup(EMailNotification._bad_tags): for element in soup(EMailNotification._bad_tags):
self.logger.debug( self.logger.debug(
f"{qid}: removing dangerous tag '{element_name}' and its content") f"{qid}: removing dangerous tag '{element.name}' and its content")
element.extract() element.extract()
# remove not whitelisted elements, but keep their content # remove not whitelisted elements, but keep their content

View File

@@ -1 +1 @@
__version__ = "1.0.1" __version__ = "1.0.2"