Skip to content

Commit

Permalink
Fix newline handling of automatic ICANN updater
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-friedberger committed Aug 9, 2024
1 parent ef9b4e5 commit dadc95c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tools/newgtlds.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,8 @@ var (
pslTemplate = template.Must(
template.New("public-suffix-list-gtlds").Parse(`
{{- range .Entries }}
{{- .Comment }}
{{ printf "%s\n" .ULabel }}
{{ end }}`))
{{ .Comment }}
{{ printf "%s\n" .ULabel }}{{ end }}`))
)

// pslEntry is a struct matching a subset of the gTLD data fields present in
Expand Down

0 comments on commit dadc95c

Please sign in to comment.