From 1ee3f8c7f329cc23469664ffd0e06d4c52287c5c Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Sun, 19 May 2024 08:30:58 +0100 Subject: [PATCH] fix printing of updated list --- cmd/enbas/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/enbas/update.go b/cmd/enbas/update.go index c9740f7..0509411 100644 --- a/cmd/enbas/update.go +++ b/cmd/enbas/update.go @@ -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 }