diff options
Diffstat (limited to 'commands/label.go')
-rw-r--r-- | commands/label.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/label.go b/commands/label.go index 906974a5..ff4d0151 100644 --- a/commands/label.go +++ b/commands/label.go @@ -20,13 +20,14 @@ func newLabelCommand() *cobra.Command { } cmd.AddCommand(newLabelAddCommand()) + cmd.AddCommand(newLabelLsCommand()) cmd.AddCommand(newLabelRmCommand()) return cmd } func runLabel(env *Env, args []string) error { - b, args, err := _select.ResolveBug(env.backend, args) + b, _, err := _select.ResolveBug(env.backend, args) if err != nil { return err } |