fix printing of updated list

This commit is contained in:
Dan Anglin 2024-05-19 08:30:58 +01:00
parent a0bef8c14b
commit 1ee3f8c7f3
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

View file

@ -83,7 +83,7 @@ func (c *updateCommand) updateList(gtsClient *client.Client) error {
}
fmt.Println("Successfully updated the list.")
fmt.Printf("\n%s\n", updatedList)
fmt.Println(updatedList)
return nil
}