From 21761011d45630998ea603576d5c390bafba0afd Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Tue, 16 Jan 2024 11:54:28 -0500 Subject: [PATCH] Fix rqlite shell help output It was not displaying the `.timer` option. --- cmd/rqlite/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/rqlite/main.go b/cmd/rqlite/main.go index 60554956..9e96bb29 100644 --- a/cmd/rqlite/main.go +++ b/cmd/rqlite/main.go @@ -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 }