From 8101fe1586700eeffe4eae8866498a79ddb07c85 Mon Sep 17 00:00:00 2001 From: xieyangrun Date: Thu, 14 Jun 2018 09:41:09 +0800 Subject: [PATCH] [tools/vsc.py]update json dump support indent=4 --- tools/vsc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/vsc.py b/tools/vsc.py index 4597c50a34..8067276ee6 100644 --- a/tools/vsc.py +++ b/tools/vsc.py @@ -64,7 +64,7 @@ def GenerateCFiles(env): json_obj = {} json_obj['configurations'] = [config_obj] - vsc_file.write(json.dumps(json_obj)) + vsc_file.write(json.dumps(json_obj, indent=4)) vsc_file.close() return