From e57cc4fcc19b1aae5270b1e24109f3d35544d8b8 Mon Sep 17 00:00:00 2001 From: Soim Kim Date: Mon, 9 Aug 2021 17:03:51 +0900 Subject: [PATCH] Add a header row for BIN_Android sheet --- src/fosslight_util/write_excel.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/fosslight_util/write_excel.py b/src/fosslight_util/write_excel.py index 72e3fee..f8f9a01 100755 --- a/src/fosslight_util/write_excel.py +++ b/src/fosslight_util/write_excel.py @@ -18,7 +18,11 @@ 'Comment'], 'BIN': ['ID', 'Binary Name', 'OSS Name', 'OSS Version', 'License', 'Download Location', 'Homepage', - 'Copyright Text', 'Exclude', 'Comment']} + 'Copyright Text', 'Exclude', 'Comment'], + 'BIN (Android)': ['ID', 'Binary Name', 'Source Code Path', + 'NOTICE.html', 'OSS Name', 'OSS Version', + 'License', 'Download Location', 'Homepage', + 'Copyright Text', 'Exclude', 'Comment']} _OUTPUT_FILE_PREFIX = "FOSSLight-Report_" _EMPTY_ITEM_MSG = "* There is no item"\ " to print in FOSSLight-Report.\n"