This commit is contained in:
Jelena Ilic 2020-06-29 13:36:01 -07:00
Родитель ace95b9108
Коммит 2bb113fc51
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -66,5 +66,5 @@ def outputData(dict, result_folder, outputToScreen):
result_file = "diskData{0}.json".format(int(dict['DeviceId']))
logging.info(json.dumps(dict, indent=2))
with open(os.path.join(result_folder, result_file), 'w') as f:
json.dump(dict, f)
json.dump(dict, f, indent=2)