daemon: fix missing newline on parse error

This commit is contained in:
Christian Schwarz 2018-02-17 17:43:55 +01:00
parent f992fed968
commit bfaf6fdfbb

View File

@ -36,7 +36,7 @@ func doDaemon(cmd *cobra.Command, args []string) {
conf, err := ParseConfig(rootArgs.configFile) conf, err := ParseConfig(rootArgs.configFile)
if err != nil { if err != nil {
fmt.Fprintf(os.Stderr, "error parsing config: %s", err) fmt.Fprintf(os.Stderr, "error parsing config: %s\n", err)
os.Exit(1) os.Exit(1)
} }