mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-02 06:19:10 -07:00
Python 3 fixes for async_wrapper and async_status. (#4671)
This commit is contained in:
parent
693fc690d7
commit
1f6e3326db
2 changed files with 7 additions and 2 deletions
|
@ -79,7 +79,7 @@ def main():
|
|||
|
||||
data = None
|
||||
try:
|
||||
data = file(log_path).read()
|
||||
data = open(log_path).read()
|
||||
data = json.loads(data)
|
||||
except Exception:
|
||||
if not data:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue