Skip to content

Commit

Permalink
Remove format parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalnayak committed Oct 2, 2015
1 parent bf017d2 commit 25f604f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions command/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,13 @@ type AuthCommand struct {
}

func (c *AuthCommand) Run(args []string) int {
var format string
var method string
var methods, methodHelp, noVerify bool
flags := c.Meta.FlagSet("auth", FlagSetDefault)
flags.BoolVar(&methods, "methods", false, "")
flags.BoolVar(&methodHelp, "method-help", false, "")
flags.BoolVar(&noVerify, "no-verify", false, "")
flags.StringVar(&method, "method", "", "method")
flags.StringVar(&format, "format", "table", "")
flags.Usage = func() { c.Ui.Error(c.Help()) }
if err := flags.Parse(args); err != nil {
return 1
Expand Down

0 comments on commit 25f604f

Please sign in to comment.