diff --git a/cmd/loop/quote.go b/cmd/loop/quote.go index ad4e409..a776423 100644 --- a/cmd/loop/quote.go +++ b/cmd/loop/quote.go @@ -36,9 +36,8 @@ var quoteCommand = cli.Command{ } func quote(ctx *cli.Context) error { - // Show command help if the incorrect number arguments and/or flags were - // provided. - if ctx.NArg() != 1 || ctx.NumFlags() > 1 { + // Show command help if the incorrect number arguments was provided. + if ctx.NArg() != 1 { return cli.ShowCommandHelp(ctx, "quote") }