Skip to content

Commit

Permalink
missed another list to join
Browse files Browse the repository at this point in the history
  • Loading branch information
TaylorFries committed Nov 7, 2024
1 parent 01daab8 commit 30dec9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/helpers/npm-deps/parse_to_comment.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,12 +356,12 @@ def go_through_folders(json_input):

if len(ERR_LI) != 0:
# if we hit any errors add the list to the output dict then clear the list
error_report = "ERRORS:\n" + str(ERR_LI)
error_report = "ERRORS:\n" + "\n".join(ERR_LI)
cur_folder_updates.append(error_report)
ERR_LI = []
if len(WARN_LI) != 0:
# if we hit any warnings add the list to the output dict then clear the list
warn_report = "WARNINGS:\n" + str(WARN_LI)
warn_report = "WARNINGS:\n" + "\n".join(WARN_LI)
cur_folder_updates.append(warn_report)
WARN_LI = []

Expand Down

0 comments on commit 30dec9c

Please sign in to comment.