Merge pull request #5310 from achillesrasquinha/py3-returns
fix json loading for error snapshots.
This commit is contained in:
commit
ed2af1d604
1 changed files with 1 additions and 1 deletions
|
|
@ -157,7 +157,7 @@ def collect_error_snapshots():
|
|||
fullpath = os.path.join(path, fname)
|
||||
|
||||
try:
|
||||
with open(fullpath, 'rb') as filedata:
|
||||
with open(fullpath, 'r') as filedata:
|
||||
data = json.load(filedata)
|
||||
|
||||
except ValueError:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue