From a0e5e74cabf99af5e3dfb831a1ce69bcf48c1a21 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Fri, 31 Jul 2020 12:48:45 -0400 Subject: [PATCH] fix a typo in an f-string --- awx/main/dispatch/control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/dispatch/control.py b/awx/main/dispatch/control.py index 186acee5cf..6b3c13499d 100644 --- a/awx/main/dispatch/control.py +++ b/awx/main/dispatch/control.py @@ -43,7 +43,7 @@ class Control(object): for reply in conn.events(select_timeout=timeout, yield_timeouts=True): if reply is None: logger.error(f'{self.service} did not reply within {timeout}s') - raise RuntimeError("{self.service} did not reply within {timeout}s") + raise RuntimeError(f"{self.service} did not reply within {timeout}s") break return json.loads(reply.payload)