From: Oleg Broytman Date: Mon, 4 Mar 2024 15:13:13 +0000 (+0300) Subject: Fix(Robots/bkmk_rrequests): Add forgotten spaces in log X-Git-Tag: 5.2.4~1 X-Git-Url: https://git.phdru.name/?p=bookmarks_db.git;a=commitdiff_plain;h=a6ac81d60daa6e21ce04bd1ca2d598f3b6615d80 Fix(Robots/bkmk_rrequests): Add forgotten spaces in log --- diff --git a/Robots/bkmk_rrequests.py b/Robots/bkmk_rrequests.py index 4612a8d..c6a91af 100644 --- a/Robots/bkmk_rrequests.py +++ b/Robots/bkmk_rrequests.py @@ -50,7 +50,7 @@ class robot_requests(robot_base): else: error, r = request_get(url, headers, self.timeout, None) if error is not None: - self.log(' Error: %s' % error) + self.log(' Error : %s' % error) if self.proxy and error != '404 not_found': self.log(' Retrying with the proxy...') error, r = request_get(url, headers, @@ -59,7 +59,7 @@ class robot_requests(robot_base): self.proxy_ok.add(url_host) if error is not None: if self.proxy and error != '404 not_found': - self.log(' Proxy error: %s' % error) + self.log(' Proxy error : %s' % error) if url_host not in self.proxy_ok: self.proxy_error.add(url_host) return error, None, None, None, None