From e8b54c6ec0331c4fc87dfbb9685a120c13cb4ca2 Mon Sep 17 00:00:00 2001 From: JustAnotherArchivist Date: Tue, 8 Sep 2020 01:42:40 +0000 Subject: [PATCH] Fix missing f-string marker --- http2irc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http2irc.py b/http2irc.py index 461cd2f..d14d8cb 100644 --- a/http2irc.py +++ b/http2irc.py @@ -717,7 +717,7 @@ class WebServer: elif message.endswith('\n'): message = message[:-1] if '\r' in message or '\n' in message: - self.logger.info('Bad request {id(request)}: linebreaks in message') + self.logger.info(f'Bad request {id(request)}: linebreaks in message') raise aiohttp.web.HTTPBadRequest() return message