From 19f43a83c3925ed3d05a4874dcbc84cbb454ea6c Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Thu, 13 Sep 2018 11:13:51 +0200 Subject: bug: proper int baked enum for merge result status instead of a string --- commands/pull.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commands/pull.go') diff --git a/commands/pull.go b/commands/pull.go index 9a5f4e5c..64de8bf5 100644 --- a/commands/pull.go +++ b/commands/pull.go @@ -41,7 +41,7 @@ func runPull(cmd *cobra.Command, args []string) error { return merge.Err } - if merge.Status != bug.MsgMergeNothing { + if merge.Status != bug.MergeStatusNothing { fmt.Printf("%s: %s\n", merge.Bug.HumanId(), merge.Status) } } -- cgit