From eef7333243252ae81cd43921beb8e0749a170585 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sun, 7 Jul 2019 12:49:42 +0200 Subject: commands: fix a missing line break --- commands/bridge_rm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commands') diff --git a/commands/bridge_rm.go b/commands/bridge_rm.go index 1c840e8a..76ad5949 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 } -- cgit