From 572e15e2382c51137529c7c12080b976211f67ef Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Wed, 10 Jan 2018 09:36:08 +0000 Subject: [PATCH] Correct type (v2) This is why you shouldn't do stuff at 1am. Signed-off-by: Stephen Finucane Fixes: b891f8d ("parser: Log when invalid project list-id passed") --- patchwork/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patchwork/parser.py b/patchwork/parser.py index 9e76c7a6..3acc6096 100644 --- a/patchwork/parser.py +++ b/patchwork/parser.py @@ -186,7 +186,7 @@ def find_project_by_header(mail): break if not project: - logger.debug("Could not find a list-id in mail headers", listid) + logger.debug("Could not find a list-id in mail headers") return project -- 2.47.3