From 8ec2a3852191a89ed4000ad8406e36305f871315 Mon Sep 17 00:00:00 2001 From: Xtreak Date: Sun, 21 Oct 2018 18:27:32 +0530 Subject: [PATCH] bpo-35036: Remove empty log line in the suspicious.py tool (GH-10024) Previous to commit ee171a2 the logline was working because of self.info() (now deprecated) defaults to an empty message. --- Doc/tools/extensions/suspicious.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Doc/tools/extensions/suspicious.py b/Doc/tools/extensions/suspicious.py index fd50f318170b15..9e814fb94d2b56 100644 --- a/Doc/tools/extensions/suspicious.py +++ b/Doc/tools/extensions/suspicious.py @@ -150,7 +150,6 @@ def is_ignored(self, line, lineno, issue): return False def report_issue(self, text, lineno, issue): - if not self.any_issue: self.logger.info() self.any_issue = True self.write_log_entry(lineno, issue, text) if py3: