diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-08 14:17:08 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-08 14:17:08 +0200 |
commit | 6d7e79a277fe6f3d137fc76588599c965fa5b2ee (patch) | |
tree | 7a392b6a12041fa8a1178980ba181c9ed5f5313c /commands | |
parent | 61a1173ec3f202b9dc71236205de785e2a454791 (diff) | |
download | git-bug-6d7e79a277fe6f3d137fc76588599c965fa5b2ee.tar.gz |
cache: refactor to handle bug changes during Pull
Diffstat (limited to 'commands')
-rw-r--r-- | commands/pull.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/pull.go b/commands/pull.go index ea064d99..9a5f4e5c 100644 --- a/commands/pull.go +++ b/commands/pull.go @@ -42,7 +42,7 @@ func runPull(cmd *cobra.Command, args []string) error { } if merge.Status != bug.MsgMergeNothing { - fmt.Printf("%s: %s\n", merge.HumanId, merge.Status) + fmt.Printf("%s: %s\n", merge.Bug.HumanId(), merge.Status) } } |