Author: Kevin Schoon [kevinschoon@gmail.com]
Hash: 87f3401095fecf44949095c33cb54a030e7f90f1
Timestamp: Sun, 27 Sep 2020 01:21:45 +0000 (4 years ago)

+1 -1 +/-1 browse
remove extra line from config output
1diff --git a/lib/cmd.ml b/lib/cmd.ml
2index ef32891..9118f20 100644
3--- a/lib/cmd.ml
4+++ b/lib/cmd.ml
5 @@ -79,7 +79,7 @@ note cat -encoding json
6
7 let config_show =
8 Command.basic ~summary:"show the current configuration"
9- (Command.Param.return (fun () -> print_endline (to_string load)))
10+ (Command.Param.return (fun () -> print_string (to_string load)))
11
12 let config_get =
13 let open Command.Let_syntax in