aboutsummaryrefslogtreecommitdiffstats
path: root/commands/label_rm.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/label_rm.go')
-rw-r--r--commands/label_rm.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/label_rm.go b/commands/label_rm.go
index 36051ba1..c03a20d9 100644
--- a/commands/label_rm.go
+++ b/commands/label_rm.go
@@ -22,7 +22,7 @@ func runLabelRm(cmd *cobra.Command, args []string) error {
return err
}
- changes, err := b.ChangeLabels(nil, args)
+ changes, _, err := b.ChangeLabels(nil, args)
for _, change := range changes {
fmt.Println(change)
@@ -37,7 +37,7 @@ func runLabelRm(cmd *cobra.Command, args []string) error {
var labelRmCmd = &cobra.Command{
Use: "rm [<id>] <label>[...]",
- Short: "Remove a label",
+ Short: "Remove a label.",
PreRunE: loadRepo,
RunE: runLabelRm,
}