diff options
Diffstat (limited to 'commands/label.go')
-rw-r--r-- | commands/label.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/label.go b/commands/label.go index de7bdb3a..e3ffdb64 100644 --- a/commands/label.go +++ b/commands/label.go @@ -3,14 +3,14 @@ package commands import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/select" + _select "github.com/MichaelMure/git-bug/commands/select" ) func newLabelCommand() *cobra.Command { env := newEnv() cmd := &cobra.Command{ - Use: "label [<id>]", + Use: "label [ID]", Short: "Display, add or remove labels to/from a bug.", PreRunE: loadBackend(env), PostRunE: closeBackend(env), |