Skip to content

Commit c0f0b55

Browse files
authored
Merge pull request #141 from fosslight/develop
Fix to print excel file by default
2 parents 2567243 + cefbc7b commit c0f0b55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fosslight_binary/binary_analysis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def init(path_to_find_bin, output_file_name, formats, path_to_exclude=[]):
132132
error_occured(error_msg=msg,
133133
result_log=_result_log,
134134
exit=True)
135-
return _result_log, combined_paths_and_files, output_extensions
135+
return _result_log, combined_paths_and_files, output_extensions, formats
136136

137137

138138
def get_file_list(path_to_find, abs_path_to_exclude):
@@ -195,7 +195,7 @@ def find_binaries(path_to_find_bin, output_dir, formats, dburl="", simple_mode=F
195195
mode = "Simple Mode"
196196
_result_log, compressed_list_txt, simple_bin_list_txt = init_simple(output_dir, PKG_NAME, start_time)
197197
else:
198-
_result_log, result_reports, output_extensions = init(
198+
_result_log, result_reports, output_extensions, formats = init(
199199
path_to_find_bin, output_dir, formats, path_to_exclude)
200200

201201
total_bin_cnt = 0

0 commit comments

Comments
 (0)