From 858c47ea2657b31773fbcc42445e233e9c081641 Mon Sep 17 00:00:00 2001 From: Iain Lane Date: Fri, 17 Jan 2020 16:59:26 +0000 Subject: [PATCH] LPExcuseBugs: Don't try to interpolate a string when we didn't want one --- britney2/policies/policy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney2/policies/policy.py b/britney2/policies/policy.py index 9cddd33..b0b4820 100644 --- a/britney2/policies/policy.py +++ b/britney2/policies/policy.py @@ -733,7 +733,7 @@ class LPExcuseBugsPolicy(BasePolicy): except ValueError: self.log("ExcuseBugs, unable to parse \"%s\"" % line, type='E') except FileNotFoundError: - self.log("ExcuseBugs, data file not found, no bugs will be recorded" % filename) + self.log("ExcuseBugs, data file not found, no bugs will be recorded") def apply_policy_impl(self, excuse_bugs_info, suite, source_name, source_data_tdist, source_data_srcdist, excuse): excuse_bug = self.excuse_bugs[source_name]