From a314a09154d66799372de53b7abbfd3e62b21061 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Sat, 11 Mar 2023 17:11:22 +0000 Subject: [PATCH] Fix log statement in exponential backoff for platform --- core/clients/platform.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/clients/platform.py b/core/clients/platform.py index 1c6334c..162aae8 100644 --- a/core/clients/platform.py +++ b/core/clients/platform.py @@ -57,8 +57,10 @@ class LocalPlatformClient(ABC): else: if throttled != 0: log.info( - f"Finally successful after {throttled}", - f" attempts to call {method}", + ( + f"Finally successful after {throttled}" + f" attempts to call {method}" + ) ) returned_429 = False throttled = 0