From 0ac306fe2afaa1e75d8dde2c2d11bf34659551bc Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sat, 11 Aug 2018 16:55:15 +1000 Subject: [PATCH] fix whitespace --- gitcommands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitcommands.go b/gitcommands.go index 6dbc41c28..dcd338136 100644 --- a/gitcommands.go +++ b/gitcommands.go @@ -492,7 +492,7 @@ func gitNewBranch(name string) (string, error) { } func gitDeleteBranch(branch string) (string, error) { - return runCommand("git branch -d " + branch) + return runCommand("git branch -d " + branch) } func gitListStash() (string, error) {