From 918775ea6c06a830e22386ade40378e8efb25904 Mon Sep 17 00:00:00 2001 From: Timothy Perrett Date: Fri, 12 Oct 2018 21:33:16 -0700 Subject: [PATCH] Fix default format bug - only use one of the constants --- cmd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/main.go b/cmd/main.go index 30b53d4..8664ef1 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -81,7 +81,7 @@ func main() { }, cli.StringFlag{ Name: "format, f", - Value: "yaml", + Value: YAML, Usage: "Encoding format to use; present options are '" + YAML + "' or '" + NLDP + "'", Destination: &genEncodingMode, },