We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f6958a1 + 31497fe commit faaf430Copy full SHA for faaf430
src/fosslight_android/android_binary_analysis.py
@@ -340,10 +340,14 @@ def find_notice_value():
340
logger.info(f"Notice file is empty:{notice_files}")
341
return
342
if notice_files:
343
+ for notice_file in notice_files:
344
+ if "NOTICE.txt" in notice_file:
345
+ logger.debug(f"NOTICE.txt: {notice_file}")
346
+ notice_files.remove(notice_file)
347
str_notice_files = ",".join(notice_files)
348
logger.info(f"Notice files:{str_notice_files}")
349
else:
- logger.debug("Can't find a notiece file")
350
+ logger.debug("Can't find a notice file")
351
return_list = do_multi_process(find_notice_html, final_bin_info)
352
final_bin_info = return_list[:]
353
0 commit comments