diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -45,13 +45,14 @@ func inputs_outputs() { if f.output != nil { outSupport += strings.Join([]string{" ", f.friendlyName, ":", f.flagName, "\n"}, " ") } - // Special case for img output - outSupport += " Image output : img\n" if f.input != nil { inSupport += strings.Join([]string{" ", f.friendlyName, ":", f.flagName, "\n"}, " ") } } + // Special case for img output + outSupport += " Image output : img\n" + fmt.Print(inSupport, outSupport) } |