fix build

Michael Muré created

Change summary

commands/pull.go | 1 -
commands/push.go | 1 -
git-bug.go       | 2 +-
3 files changed, 1 insertion(+), 3 deletions(-)

Detailed changes

commands/pull.go 🔗

@@ -2,7 +2,6 @@ package commands
 
 import (
 	"errors"
-	"fmt"
 	"github.com/MichaelMure/git-bug/bug"
 	"github.com/MichaelMure/git-bug/repository"
 )

commands/push.go 🔗

@@ -2,7 +2,6 @@ package commands
 
 import (
 	"errors"
-	"fmt"
 	"github.com/MichaelMure/git-bug/bug"
 	"github.com/MichaelMure/git-bug/repository"
 )

git-bug.go 🔗

@@ -35,7 +35,7 @@ func help(command string) {
 		rootUsage()
 		return
 	}
-	subcommand.Usage(rootCommandName)
+	subcommand.PrintUsage(rootCommandName, command)
 }
 
 func main() {