aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-07-07 12:49:42 +0200
committerMichael Muré <batolettre@gmail.com>2019-07-07 12:50:23 +0200
commiteef7333243252ae81cd43921beb8e0749a170585 (patch)
tree30faab9e390abcd1bca9e7a39ecc86910ecc3ada
parent7988c67d0e692f74138b088d098331166986fc0d (diff)
downloadgit-bug-eef7333243252ae81cd43921beb8e0749a170585.tar.gz
commands: fix a missing line break
-rw-r--r--commands/bridge_rm.go2
1 files changed, 1 insertions, 1 deletions
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
}