From eef7333243252ae81cd43921beb8e0749a170585 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Sun, 7 Jul 2019 12:49:42 +0200 Subject: [PATCH] commands: fix a missing line break --- commands/bridge_rm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/bridge_rm.go b/commands/bridge_rm.go index 1c840e8a94c078c0532504e2f52369fdff147c95..76ad59498e6e901fad023a38cec13520c2af7d99 100644 --- a/commands/bridge_rm.go +++ b/commands/bridge_rm.go @@ -23,7 +23,7 @@ func runBridgeRm(cmd *cobra.Command, args []string) error { return err } - fmt.Printf("Successfully removed bridge configuration %v", args[0]) + fmt.Printf("Successfully removed bridge configuration %v\n", args[0]) return nil }