aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bug/bug_label_new.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/bug/bug_label_new.go')
-rw-r--r--commands/bug/bug_label_new.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/commands/bug/bug_label_new.go b/commands/bug/bug_label_new.go
index 1e1f2d4f..c8c3b811 100644
--- a/commands/bug/bug_label_new.go
+++ b/commands/bug/bug_label_new.go
@@ -22,13 +22,11 @@ func newBugLabelNewCommand(env *execenv.Env) *cobra.Command {
}
func runBugLabelNew(env *execenv.Env, args []string) error {
- b, args, err := ResolveSelected(env.Backend, args)
+ b, added, err := ResolveSelected(env.Backend, args)
if err != nil {
return err
}
- added := args
-
changes, _, err := b.ChangeLabels(text.CleanupOneLineArray(added), nil)
for _, change := range changes {