From 8b7d3ad4928ce04d4b2efa9cf6ebe1a190ea42d3 Mon Sep 17 00:00:00 2001 From: Kunhui-Li Date: Fri, 20 Aug 2021 17:01:56 +0800 Subject: [PATCH] config_tools: remove the log of sucessfully generating board XML remove the log ".xml has been generated successfully!" in board_parser.py, because it only mean that the board xml file have been created sucessfully here, not the all data have been appended successfully and pretty formatted. Tracked-On: #6315 Signed-off-by: Kunhui-Li --- misc/config_tools/board_inspector/legacy/board_parser.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/misc/config_tools/board_inspector/legacy/board_parser.py b/misc/config_tools/board_inspector/legacy/board_parser.py index 892ebf38d..f90e7f278 100755 --- a/misc/config_tools/board_inspector/legacy/board_parser.py +++ b/misc/config_tools/board_inspector/legacy/board_parser.py @@ -113,5 +113,3 @@ if __name__ == '__main__': with open(BOARD_INFO, 'a+') as f: print("", file=f) - - print("{} has been generated successfully!".format(BOARD_INFO))