aboutsummaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-06-16 21:04:36 +0200
committerMichael Muré <batolettre@gmail.com>2019-06-16 21:04:36 +0200
commit08c0e18ade5241d124fc8a3424b7612174e82cef (patch)
treee7b1c0203d62e83ab8368d8a5974749fa97506dc /commands
parentd69dcce806d280ddbd6a4fb17700153bc03da90b (diff)
downloadgit-bug-08c0e18ade5241d124fc8a3424b7612174e82cef.tar.gz
cache: expose the operation when creating a new bug
Diffstat (limited to 'commands')
-rw-r--r--commands/add.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/add.go b/commands/add.go
index ea40227c..d199b4c7 100644
--- a/commands/add.go
+++ b/commands/add.go
@@ -44,7 +44,7 @@ func runAddBug(cmd *cobra.Command, args []string) error {
}
}
- b, err := backend.NewBug(addTitle, addMessage)
+ b, _, err := backend.NewBug(addTitle, addMessage)
if err != nil {
return err
}