mirror of
https://github.com/ansible/awx.git
synced 2026-03-13 23:17:32 -02:30
fix a typo in an f-string
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user