summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorMark Kopenga <mkopenga@gmail.com>2018-12-14 11:13:29 +0100
committerGitHub <noreply@github.com>2018-12-14 11:13:29 +0100
commit255319e597019936e21b46e248841e38ea50302c (patch)
tree573f5ad935c74eb2517660ebd419078d4e6d9be9 /pkg
parent5d038dfd334d4bdd767ac4db504a21160a013f79 (diff)
parent822dc5dada5610dfdea7013883a375ea35c09781 (diff)
Merge branch 'master' into https-ask-for-username-password
Diffstat (limited to 'pkg')
-rw-r--r--pkg/commands/branch.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/commands/branch.go b/pkg/commands/branch.go
index 49655c41a..419a106d2 100644
--- a/pkg/commands/branch.go
+++ b/pkg/commands/branch.go
@@ -22,7 +22,7 @@ type Branch struct {
func (b *Branch) GetDisplayStrings() []string {
displayName := utils.ColoredString(b.Name, b.GetColor())
if b.Selected && b.Pushables != "" && b.Pullables != "" {
- displayName = fmt.Sprintf("ā†‘%sā†“%s %s", b.Pushables, b.Pullables, displayName)
+ displayName = fmt.Sprintf("%s ā†‘%sā†“%s", displayName, b.Pushables, b.Pullables)
}
return []string{b.Recency, displayName}