Python 3 fixes for async_wrapper and async_status. (#4671)

This commit is contained in:
Matt Clay 2016-09-02 18:35:14 -07:00
parent 693fc690d7
commit 1f6e3326db
2 changed files with 7 additions and 2 deletions

View file

@ -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: