aboutsummaryrefslogtreecommitdiffstats
path: root/commands/pull.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/pull.go')
-rw-r--r--commands/pull.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/commands/pull.go b/commands/pull.go
index b408c285..dbff4fb1 100644
--- a/commands/pull.go
+++ b/commands/pull.go
@@ -25,8 +25,7 @@ func runPull(repo repository.Repo, args []string) error {
// showCmd defines the "push" subcommand.
var pullCmd = &Command{
- Usage: func(arg0 string) {
- fmt.Printf("Usage: %s pull [<remote>]\n", arg0)
- },
- RunMethod: runPull,
+ Description: "Pull bugs update from a git remote",
+ Usage: "[<remote>]",
+ RunMethod: runPull,
}