commands/pull.go 🔗
@@ -2,7 +2,6 @@ package commands
import (
"errors"
- "fmt"
"github.com/MichaelMure/git-bug/bug"
"github.com/MichaelMure/git-bug/repository"
)
Michael Muré created
commands/pull.go | 1 -
commands/push.go | 1 -
git-bug.go | 2 +-
3 files changed, 1 insertion(+), 3 deletions(-)
@@ -2,7 +2,6 @@ package commands
import (
"errors"
- "fmt"
"github.com/MichaelMure/git-bug/bug"
"github.com/MichaelMure/git-bug/repository"
)
@@ -2,7 +2,6 @@ package commands
import (
"errors"
- "fmt"
"github.com/MichaelMure/git-bug/bug"
"github.com/MichaelMure/git-bug/repository"
)
@@ -35,7 +35,7 @@ func help(command string) {
rootUsage()
return
}
- subcommand.Usage(rootCommandName)
+ subcommand.PrintUsage(rootCommandName, command)
}
func main() {