Skip to content

Commit

Permalink
Add trailing LF to license rule texts
Browse files Browse the repository at this point in the history
Signed-off-by: Philippe Ombredanne <[email protected]>
  • Loading branch information
pombredanne committed Nov 9, 2023
1 parent 1163957 commit de920b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/scripts/licenses/buildrules.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class RuleData(object):

def __attrs_post_init__(self, *args, **kwargs):
self.raw_data = rdat = "\n".join(self.data_lines).strip()
self.text = "\n".join(self.text_lines).strip()
self.text = "\n".join(self.text_lines).strip() + "\n"

# validate YAML syntax
try:
Expand Down

0 comments on commit de920b9

Please sign in to comment.