Skip to content

Commit

Permalink
fix: print a newline before listing ecosystems (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Mar 10, 2022
1 parent 068ce0a commit aae4bef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func loadOSVDatabase(offline bool) database.OSVDatabase {
func printEcosystems(db database.OSVDatabase) {
ecosystems := db.ListEcosystems()

fmt.Print("The loaded OSV has vulnerabilities for the following ecosystems:")
fmt.Println("The loaded OSV has vulnerabilities for the following ecosystems:")

for _, ecosystem := range ecosystems {
fmt.Printf(" %s\n", ecosystem)
Expand Down

0 comments on commit aae4bef

Please sign in to comment.