Skip to content

Commit

Permalink
Merge pull request #214 from MickaelFontes/fix-compare-lyrics
Browse files Browse the repository at this point in the history
fix(ci/Actions): fix comment generation
  • Loading branch information
MickaelFontes authored Dec 16, 2024
2 parents 59bf990 + c9cd08c commit 7ece0e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noplp/compare_changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def diff(old_lyrics, new_lyrics):
expected = old_output.splitlines(1)
actual = new_output.splitlines(1)

diff_files = difflib.unified_diff(expected, actual)
diff_files = "".join(difflib.unified_diff(expected, actual))

return diff_files

Expand Down

0 comments on commit 7ece0e4

Please sign in to comment.