Skip to content

Commit

Permalink
Fix rqlite shell help output
Browse files Browse the repository at this point in the history
It was not displaying the `.timer` option.
  • Loading branch information
otoolep committed Jan 16, 2024
1 parent 9e1ac0f commit 2176101
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/rqlite/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ func makeJSONBody(line string) string {

func help(ctx *cli.Context, cmd, line string, argv *argT) error {
sort.Strings(cliHelp)
fmt.Print(strings.Join(cliHelp, "\n"))
fmt.Println(strings.Join(cliHelp, "\n"))
return nil
}

Expand Down

0 comments on commit 2176101

Please sign in to comment.