From 8c04e58972d1c58ab82250df093c3d503eed4fe2 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Thu, 16 Nov 2023 08:35:41 +0300 Subject: [PATCH] Feat(robots): Align "Content-Type" --- Robots/bkmk_robot_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Robots/bkmk_robot_base.py b/Robots/bkmk_robot_base.py index f32e1b3..d8877c6 100644 --- a/Robots/bkmk_robot_base.py +++ b/Robots/bkmk_robot_base.py @@ -126,7 +126,7 @@ class robot_base(Robot): if headers: try: content_type = headers["Content-Type"] - self.log(" Content-Type: %s" % content_type) + self.log(" Content-Type : %s" % content_type) if content_type is None: if 'html' in content.lower(): content_type = 'text/html' -- 2.39.2