diff options
Diffstat (limited to 'commands')
-rw-r--r-- | commands/comment_add.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/comment_add.go b/commands/comment_add.go index e415763b..acac7994 100644 --- a/commands/comment_add.go +++ b/commands/comment_add.go @@ -69,7 +69,7 @@ func runCommentAdd(env *Env, opts commentAddOptions, args []string) error { } } - _, err = b.AddComment(text.Cleanup(opts.message)) + _, _, err = b.AddComment(text.Cleanup(opts.message)) if err != nil { return err } |