mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 18:40:01 -03:30
Merge pull request #7788 from ryanpetrello/eff-string
fix a typo in an f-string Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
commit
1bb597bba4
@ -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)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user