Skip to content

Commit 9e7db98

Browse files
authored
Fix the bug where BIN (Android) cannot be printed
2 parents 1492d6e + 2c64da4 commit 9e7db98

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/fosslight_util/write_excel.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
from pathlib import Path
1313
import fosslight_util.constant as constant
1414

15-
_HEADER = {'SRC': ['ID', 'Source Name or Path', 'OSS Name',
15+
_HEADER = {'BIN (': ['ID', 'Binary Name', 'Source Code Path',
16+
'NOTICE.html', 'OSS Name', 'OSS Version',
17+
'License', 'Download Location', 'Homepage',
18+
'Copyright Text', 'Exclude', 'Comment'],
19+
'SRC': ['ID', 'Source Name or Path', 'OSS Name',
1620
'OSS Version', 'License', 'Download Location',
1721
'Homepage', 'Copyright Text', 'Exclude',
1822
'Comment'],
1923
'BIN': ['ID', 'Binary Name', 'OSS Name', 'OSS Version',
2024
'License', 'Download Location', 'Homepage',
21-
'Copyright Text', 'Exclude', 'Comment'],
22-
'BIN (Android)': ['ID', 'Binary Name', 'Source Code Path',
23-
'NOTICE.html', 'OSS Name', 'OSS Version',
24-
'License', 'Download Location', 'Homepage',
25-
'Copyright Text', 'Exclude', 'Comment']}
25+
'Copyright Text', 'Exclude', 'Comment']}
2626
_OUTPUT_FILE_PREFIX = "FOSSLight-Report_"
2727
_EMPTY_ITEM_MSG = "* There is no item"\
2828
" to print in FOSSLight-Report.\n"

0 commit comments

Comments
 (0)