Skip to content

Commit 1fa5c31

Browse files
committed
Fix exclude column error
1 parent e6ff920 commit 1fa5c31

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/fosslight_source/_parsing_scancode_file_item.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def set_is_license_text(self, value):
6262

6363
def get_row_to_print(self):
6464
print_rows = [self.file, "", "", ','.join(self.licenses), "", "",
65-
','.join(self.copyright), "",
65+
','.join(self.copyright),
6666
"Exclude" if self.exclude else "",
6767
self.comment]
6868
return print_rows

src/fosslight_source/help.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,11 @@
2626
FOSSLigtht_convert converts the result of executing ScanCode in json format into OSS Report format.
2727
2828
Options:
29-
-h\t\t\t\t Print help message
29+
Mandatory
3030
-p <path_dir>\t\t Path of ScanCode json files
31+
32+
Optional
33+
-h\t\t\t\t Print help message
3134
-o <file_name>\t\t Output file name"""
3235

3336

0 commit comments

Comments
 (0)